From 3cedad088baf579543c13f9291909f5eb89629a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=B5=A9=E6=96=8C?= Date: Tue, 21 Jan 2025 17:15:59 +0800 Subject: [PATCH] Update update.sql --- trunk/install/update.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/trunk/install/update.sql b/trunk/install/update.sql index 4cfde1b1bdc..7924ea95a0f 100644 --- a/trunk/install/update.sql +++ b/trunk/install/update.sql @@ -29,6 +29,7 @@ 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 UNSIGNED default 0 after `password`; alter table contest add column subnet varchar(255) not null default '' after contest_type; +alter table online modify refer varchar(4096) DEFAULT NULL; #create fulltext index problem_title_source_index on problem(title,source);