Explorar el Código

Fix nondeterminism error in schema creation.

Kestrel hace 7 meses
padre
commit
3c77c897f2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      microrm/src/schema/build.rs

+ 1 - 1
microrm/src/schema/build.rs

@@ -172,7 +172,7 @@ pub(crate) fn collect_from_database<DB: Database>() -> DatabaseSchema {
 
                     assoc_table
                         .constraints
-                        .push(format!("UNIQUE(`range`, `domain`)"));
+                        .push(format!("unique(`range`, `domain`)"));
 
                     tables.insert(assoc_table_name.clone(), assoc_table);
                 }