mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-07 13:42:02 +01:00
11 lines
276 B
SQL
11 lines
276 B
SQL
USE ##;
|
|
-- !
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
-- !
|
|
ALTER TABLE Labels MODIFY id INTEGER AUTO_INCREMENT;
|
|
-- !
|
|
ALTER TABLE MessageFilters MODIFY id INTEGER AUTO_INCREMENT;
|
|
-- !
|
|
SET FOREIGN_KEY_CHECKS = 1;
|
|
-- !
|
|
UPDATE Information SET inf_value = '17' WHERE inf_key = 'schema_version'; |