5 lines
275 B
SQL
5 lines
275 B
SQL
ALTER TABLE doc_statistics ADD COLUMN time_point VARCHAR NULL;
|
|
COMMENT ON COLUMN doc_statistics.time_point IS '时间点';
|
|
-- Insert migration record
|
|
INSERT INTO __MigrationsHistory (MigrationId, ProductVersion)
|
|
VALUES ('202511211515 alter_table doc_statistics', '1.0.0'); |