-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Irene Diez <[email protected]>
- Loading branch information
Showing
12 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
migrations_manufacturing_server_postgres/2023-10-03-152801_create_db/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-- This file should undo anything in `up.sql` | ||
|
||
DROP TABLE manufacturer_vouchers; |
6 changes: 6 additions & 0 deletions
6
migrations_manufacturing_server_postgres/2023-10-03-152801_create_db/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-- Your SQL goes here | ||
|
||
CREATE TABLE manufacturer_vouchers ( | ||
guid varchar(36) NOT NULL PRIMARY KEY, | ||
contents bytea NOT NULL | ||
); |
1 change: 1 addition & 0 deletions
1
migrations_manufacturing_server_sqlite/2023-10-03-152801_create_db/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE manufacturer_vouchers; |
4 changes: 4 additions & 0 deletions
4
migrations_manufacturing_server_sqlite/2023-10-03-152801_create_db/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CREATE TABLE manufacturer_vouchers ( | ||
ov_guid varchar(36) PRIMARY KEY, | ||
contents blob NOT NULL | ||
); |
3 changes: 3 additions & 0 deletions
3
migrations_owner_onboarding_server_postgres/2023-10-03-152801_create_db/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-- This file should undo anything in `up.sql` | ||
|
||
DROP TABLE owner_vouchers; |
8 changes: 8 additions & 0 deletions
8
migrations_owner_onboarding_server_postgres/2023-10-03-152801_create_db/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- Your SQL goes here | ||
|
||
CREATE TABLE owner_vouchers ( | ||
guid varchar(36) NOT NULL PRIMARY KEY, | ||
contents bytea NOT NULL, | ||
to2_performed boolean, | ||
to0_accept_owner_wait_seconds bigint | ||
); |
1 change: 1 addition & 0 deletions
1
migrations_owner_onboarding_server_sqlite/2023-10-03-152801_create_db/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE owner_vouchers; |
6 changes: 6 additions & 0 deletions
6
migrations_owner_onboarding_server_sqlite/2023-10-03-152801_create_db/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE TABLE owner_vouchers ( | ||
ov_guid varchar(36) NOT NULL PRIMARY KEY | ||
contents blob NOT NULL, | ||
to2_performed bool, | ||
to0_accept_owner_wait_seconds bigint | ||
); |
3 changes: 3 additions & 0 deletions
3
migrations_rendezvous_server_postgres/2023-10-03-152801_create_db/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-- This file should undo anything in `up.sql` | ||
|
||
DROP TABLE rendezvous_vouchers; |
7 changes: 7 additions & 0 deletions
7
migrations_rendezvous_server_postgres/2023-10-03-152801_create_db/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Your SQL goes here | ||
|
||
CREATE TABLE rendezvous_vouchers ( | ||
guid varchar(36) NOT NULL PRIMARY KEY, | ||
contents bytea NOT NULL, | ||
ttl bigint | ||
); |
1 change: 1 addition & 0 deletions
1
migrations_rendezvous_server_sqlite/2023-10-03-152801_create_db/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE rendezvous_vouchers; |
5 changes: 5 additions & 0 deletions
5
migrations_rendezvous_server_sqlite/2023-10-03-152801_create_db/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CREATE TABLE rendezvous_vouchers ( | ||
ov_guid varchar(36) NOT NULL PRIMARY KEY, | ||
contents blob NOT NULL | ||
ttl bigint | ||
); |