5 lines
308 B
SQL
5 lines
308 B
SQL
ALTER TABLE adm_organization_location ADD item_code varchar(255) NULL;
|
|
COMMENT ON COLUMN adm_organization_location.item_code IS '项目编码';
|
|
-- Insert migration record
|
|
INSERT INTO __MigrationsHistory (MigrationId, ProductVersion)
|
|
VALUES ('2202511271311 alter_table adm_organization_location', '1.0.0'); |