summaryrefslogtreecommitdiffstats
path: root/schema/pgsql-migrations/upgrade_137.sql
blob: 220c1c3e07683f5e183c7b54c366ce2e853d9fe9 (plain)
1
2
3
4
5
6
7
8
9
ALTER TABLE import_source
  ADD COLUMN description text DEFAULT NULL;

ALTER TABLE sync_rule
  ADD COLUMN description text DEFAULT NULL;

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