5 lines
327 B
SQL
5 lines
327 B
SQL
ALTER TABLE public.wor_device_dispense ADD preparer_id int8 NULL;
|
|
COMMENT ON COLUMN public.wor_device_dispense.preparer_id IS '配药人';
|
|
-- 插入为wor_device_dispense表添加列的迁移记录
|
|
INSERT INTO __MigrationsHistory (MigrationId, ProductVersion)
|
|
VALUES ('202509180852 add_column_wor_device_dispense', '1.0.0'); |