Commit fd381c4c094c8cf701f7833d5e00dfbd05034f29
1 parent
87529402
Add the is_stuck field, which controls whether automated synchronisation
of this field will cause this lookup value to change enabled/disabled state. git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4009 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
1 deletions
sql/mysql/upgrade/2.99.2/disabled_metadata.sql
| 1 | ALTER TABLE `metadata_lookup` ADD COLUMN `disabled` tinyint(3) unsigned NOT NULL default '0'; | 1 | ALTER TABLE `metadata_lookup` ADD COLUMN `disabled` tinyint(3) unsigned NOT NULL default '0'; |
| 2 | ALTER TABLE `metadata_lookup` ADD INDEX `disabled` (`disabled`); | 2 | ALTER TABLE `metadata_lookup` ADD INDEX `disabled` (`disabled`); |
| 3 | - | 3 | +ALTER TABLE `metadata_lookup` ADD COLUMN `is_stuck` tinyint(1) NOT NULL default '0'; |
| 4 | +ALTER TABLE `metadata_lookup` ADD INDEX `is_stuck` (`is_stuck`); |