mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
9 lines
240 B
SQL
9 lines
240 B
SQL
CREATE DOMAIN d_smallint AS integer CHECK (VALUE >= 0) CHECK (VALUE < 65536);
|
|
|
|
ALTER TABLE icinga_endpoint ALTER COLUMN port TYPE d_smallint;
|
|
|
|
|
|
INSERT INTO director_schema_migration
|
|
(schema_version, migration_time)
|
|
VALUES (169, NOW());
|