-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump versions, cleaned up shard.override.yml, make linter happy
- Loading branch information
Showing
8 changed files
with
36 additions
and
7 deletions.
There are no files selected for viewing
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 @@ | ||
Lint/NotNil: | ||
Enabled: false | ||
Style/QueryBoolMethods: | ||
Enabled: false |
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
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
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
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
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
9 changes: 9 additions & 0 deletions
9
spec/migration/db/migrations/20230224115858_add_sys_booking_feat.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,9 @@ | ||
-- +micrate Up | ||
-- SQL in section 'Up' is executed when this migration is applied | ||
|
||
ALTER TABLE "sys" ADD COLUMN public BOOLEAN NOT NULL DEFAULT false; | ||
|
||
-- +micrate Down | ||
-- SQL section 'Down' is executed when this migration is rolled back | ||
|
||
ALTER TABLE "sys" DROP COLUMN public; |
18 changes: 18 additions & 0 deletions
18
spec/migration/db/migrations/20230314100503_alter_user_table.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,18 @@ | ||
-- +micrate Up | ||
-- SQL in section 'Up' is executed when this migration is applied | ||
|
||
alter table "user" alter COLUMN nickname drop NOT NULL; | ||
alter table "user" alter COLUMN phone drop NOT NULL; | ||
alter table "user" alter COLUMN country drop NOT NULL; | ||
alter table "user" alter COLUMN image drop NOT NULL; | ||
alter table "user" alter COLUMN ui_theme drop NOT NULL; | ||
alter table "user" alter COLUMN misc drop NOT NULL; | ||
|
||
-- +micrate Down | ||
-- SQL section 'Down' is executed when this migration is rolled back | ||
alter table "user" alter COLUMN nickname set NOT NULL; | ||
alter table "user" alter COLUMN phone set NOT NULL; | ||
alter table "user" alter COLUMN country set NOT NULL; | ||
alter table "user" alter COLUMN image set NOT NULL; | ||
alter table "user" alter COLUMN ui_theme set NOT NULL; | ||
alter table "user" alter COLUMN misc set NOT NULL; |