Initial commit

This commit is contained in:
wangxuming
2026-07-12 15:53:24 +08:00
commit 68d61700d5
252 changed files with 23291 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
ALTER TABLE projects
ADD COLUMN visitor_notice varchar(240) NOT NULL DEFAULT '请您在景区附近等候,注意听从工作人员指引。';
ALTER TABLE projects
ADD CONSTRAINT projects_visitor_notice_length_check
CHECK (char_length(visitor_notice) <= 240);