summaryrefslogtreecommitdiffstats
path: root/schema/mysql-migrations/upgrade_101.sql
blob: bbe1817ecc4a2d7232f1e387a4fe720cfd02849b (plain)
1
2
3
4
5
6
7
ALTER TABLE icinga_host
  ADD COLUMN api_key VARCHAR(40) DEFAULT NULL AFTER accept_config,
  ADD UNIQUE KEY api_key (api_key);

INSERT INTO director_schema_migration
  (schema_version, migration_time)
  VALUES (101, NOW());