Skip to content

Commit

Permalink
fix: sql migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Feb 17, 2024
1 parent 42bbef4 commit be690ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
4 changes: 2 additions & 2 deletions moksha-mint/migrations/20240112101746_onchain.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
)
);

0 comments on commit be690ed

Please sign in to comment.