You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
986 B
Java

--
alter table electronic_other alter column archive_state set default 0;
--
ALTER TABLE electronic_other CHANGE column archive_state file_status varchar(64);
--
ALTER TABLE electronic_other ADD COLUMN `file_type` varchar(64) NULL DEFAULT NULL COMMENT '';
ALTER TABLE electronic_other ADD COLUMN `site` varchar(64) NULL DEFAULT NULL COMMENT '';
ALTER TABLE electronic_other ADD COLUMN `files_num` varchar(64) NULL DEFAULT NULL COMMENT '';
-- ID ID ID
ALTER TABLE electronic_other ADD COLUMN `organization_id` bigint(20) NULL DEFAULT NULL COMMENT 'ID';
ALTER TABLE electronic_other ADD COLUMN `depot_id` bigint(20) NULL DEFAULT NULL COMMENT 'ID';
ALTER TABLE electronic_other ADD COLUMN `cabinet_id` bigint(20) NULL DEFAULT NULL COMMENT 'ID';