5 lines
272 B
SQL
5 lines
272 B
SQL
ALTER TABLE doc_inventory_item_static ALTER COLUMN delete_flag TYPE bpchar(1) USING delete_flag::bpchar(1);
|
|
|
|
-- Insert migration record
|
|
INSERT INTO __MigrationsHistory (MigrationId, ProductVersion)
|
|
VALUES ('202511201011 alter_table doc_inventory_item_static', '1.0.0'); |