8 lines
482 B
SQL
8 lines
482 B
SQL
ALTER TABLE public.tmp_encounter_auto_roll ADD practitioner_id int8 NULL;
|
|
COMMENT ON COLUMN public.tmp_encounter_auto_roll.practitioner_id IS '参与者id';
|
|
|
|
ALTER TABLE public.tmp_encounter_auto_roll ADD organization_id int8 NULL;
|
|
COMMENT ON COLUMN public.tmp_encounter_auto_roll.organization_id IS '参与者科室id';
|
|
-- Insert migration record
|
|
INSERT INTO __MigrationsHistory (MigrationId, ProductVersion)
|
|
VALUES ('202511201516 alter_table tmp_encounter_auto_roll', '1.0.0'); |