From be690ed6beb6fdb5034b61255a74befbb0061969 Mon Sep 17 00:00:00 2001 From: Steffen <99717310+ngutech21@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:23:58 +0100 Subject: [PATCH] fix: sql migration --- .vscode/settings.json | 2 +- moksha-mint/migrations/20240112101746_onchain.sql | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 555ffc74..5f7b1821 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { "rust-analyzer.linkedProjects": ["./Cargo.toml"], - "rust-analyzer.check.command": "clippy", + "rust-analyzer.check.command": "check", "rust-analyzer.checkOnSave": true, "rust-analyzer.showUnlinkedFileNotification": false, "explorer.fileNesting.enabled": true, diff --git a/moksha-mint/migrations/20240112101746_onchain.sql b/moksha-mint/migrations/20240112101746_onchain.sql index 4dfce256..6188b0c6 100644 --- a/moksha-mint/migrations/20240112101746_onchain.sql +++ b/moksha-mint/migrations/20240112101746_onchain.sql @@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS onchain_mint_quotes expiry bigint NOT NULL, paid boolean NOT NULL, CONSTRAINT onchain_mint_quotes_pkey PRIMARY KEY (id) -) +); CREATE TABLE IF NOT EXISTS onchain_melt_quotes @@ -20,4 +20,4 @@ CREATE TABLE IF NOT EXISTS onchain_melt_quotes expiry bigint NOT NULL, paid boolean NOT NULL, CONSTRAINT onchain_melt_quotes_pkey PRIMARY KEY (id) -) +);