Skip to content

Commit

Permalink
build(apply): set the time zone and prepare for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
woowahan-pjs authored Oct 14, 2022
1 parent 0f9a16c commit a17fe1e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ phases:
pre_build:
commands:
- export LC_ALL="en_US.utf8"
- export TZ="Asia/Seoul"
build:
commands:
- echo Build Starting on `date`
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,12 @@ alter table judgment_record
add constraint fk_judgment_record_judgment_id_ref_judgment_id
foreign key (judgment_id)
references judgment (id);

alter table administrator
modify name varchar(30) not null,
add username varchar(30) not null after password,
add constraint uk_administrator unique (username),
drop index `UK_qv926x9u07ru5erc4vn3lxhcg`;

alter table assignment
modify note varchar(5000) not null;

0 comments on commit a17fe1e

Please sign in to comment.