Skip to content

Commit

Permalink
Update update.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
zhblue authored Jan 16, 2025
1 parent 2074d2d commit c2a8d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk/install/update.sql
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ alter table contest add index key_c_end(end_time);
alter table contest add index key_c_dend(defunct,end_time);
alter table users add column starred int default 0 after activecode ;
alter table users add column expiry_date date not null default '2099-01-01' after reg_time;
alter table contest add column contest_type tinyint default 0 after `password`;
alter table contest add column contest_type tinyint UNSIGNED default 0 after `password`;
alter table contest add column subnet varchar(255) not null default '' after contest_type;
#create fulltext index problem_title_source_index on problem(title,source);

Expand Down

0 comments on commit c2a8d41

Please sign in to comment.