mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-14 00:14:23 +02:00
6 lines
224 B
SQL
6 lines
224 B
SQL
CREATE TABLE tmp_table LIKE config;
|
|
ALTER IGNORE TABLE tmp_table ADD UNIQUE INDEX uniqueindex_configname (config_name);
|
|
INSERT IGNORE INTO tmp_table SELECT * FROM config;
|
|
DROP TABLE config;
|
|
RENAME TABLE tmp_table TO config;
|