summaryrefslogtreecommitdiffstats
path: root/schema/mysql-migrations/upgrade_82.sql
blob: e1acff8739006adfa56a9cd1f0c66dd77a5a765d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ALTER TABLE sync_rule
  MODIFY COLUMN object_type enum(
    'host',
    'service',
    'command',
    'user',
    'hostgroup',
    'servicegroup',
    'usergroup',
    'datalistEntry',
    'endpoint',
    'zone'
  ) NOT NULL;

INSERT INTO director_schema_migration
  SET migration_time = NOW(),
      schema_version = 82;