Skip to content

Commit

Permalink
Merge to a single statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
yongseongkim committed Mar 30, 2024
1 parent 7c73923 commit 14b3342
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import kotlin.Int;
import kotlin.collections.List;

-- floors, entrance type 이 빈 list 면 입력받지 않았다고 판단
ALTER TABLE place_accessibility ADD COLUMN floors TEXT AS List<Int> NOT NULL DEFAULT '[]';
ALTER TABLE place_accessibility ADD COLUMN is_stair_only_option BOOLEAN NULL;
ALTER TABLE place_accessibility ADD COLUMN stair_height_level VARCHAR(32) AS StairHeightLevel NULL;
ALTER TABLE place_accessibility ADD COLUMN entrance_door_types TEXT AS List<EntranceDoorType> NOT NULL DEFAULT '[]';
ALTER TABLE place_accessibility
ADD COLUMN floors TEXT AS List<Int> NOT NULL DEFAULT '[]',
ADD COLUMN is_stair_only_option BOOLEAN NULL,
ADD COLUMN stair_height_level VARCHAR(32) AS StairHeightLevel NULL,
ADD COLUMN entrance_door_types TEXT AS List<EntranceDoorType> NOT NULL DEFAULT '[]';

0 comments on commit 14b3342

Please sign in to comment.