Ver Fonte

chore: drop unused mint table melt_request

thesimplekid há 2 meses atrás
pai
commit
e87d818137

+ 1 - 0
crates/cdk-sql-common/src/mint/migrations/20250812132015_drop_melt_request.sql

@@ -0,0 +1 @@
+DROP TABLE IF EXISTS melt_request;

+ 1 - 1
justfile

@@ -14,7 +14,7 @@ new-migration target name:
     fi
     
     timestamp=$(date +%Y%m%d%H%M%S)
-    migration_path="./crates/cdk-sqlite/src/{{target}}/migrations/${timestamp}_{{name}}.sql"
+    migration_path="./crates/cdk-sql-common/src/{{target}}/migrations/${timestamp}_{{name}}.sql"
     
     # Create the file
     mkdir -p "$(dirname "$migration_path")"