ソースを参照

Merge pull request #953 from thesimplekid/drop_melt_request

chore: drop unused mint table melt_request
thesimplekid 2 ヶ月 前
コミット
ffb0335587

+ 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")"