-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
28 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ALTER TABLE `editor_data_files` MODIFY COLUMN data_checks TEXT DEFAULT NULL; | ||
ALTER TABLE `editor_data_files` MODIFY COLUMN missing_data TEXT DEFAULT NULL; | ||
ALTER TABLE `editor_data_files` MODIFY COLUMN notes TEXT DEFAULT NULL; | ||
|
||
ALTER TABLE `editor_data_files` MODIFY COLUMN metadata TEXT DEFAULT NULL; | ||
|
||
|
||
# Add pid and wgt columns to editor_collections | ||
ALTER TABLE `editor_collections` add pid int DEFAULT NULL; | ||
ALTER TABLE `editor_collections` add wgt int DEFAULT NULL; | ||
ALTER TABLE `editor_collections` ADD UNIQUE index `idx_title_pid` (`title`,`pid`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters