Skip to content

chore: add test sql #2177

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions store/migration/prod/1.4/0000__test_table.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
CREATE TABLE testTable (
id INTEGER,
name TEXT
);
1 change: 1 addition & 0 deletions store/migration/prod/1.4/0001_unique_key.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE testTable ADD CONSTRAINT uk_id_name UNIQUE (id, name);