summaryrefslogtreecommitdiffstats
path: root/create/postgresql/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'create/postgresql/schema.sql')
-rw-r--r--create/postgresql/schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql
index 51ea19ce..fae6aacf 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -11,7 +11,7 @@ CREATE TABLE hosts (
ip varchar(15) DEFAULT '127.0.0.1' NOT NULL,
port int4 DEFAULT '0' NOT NULL,
status int4 DEFAULT '0' NOT NULL,
- disabled_until int4 DEFAULT '0' NOT NULL,
+ disable_until int4 DEFAULT '0' NOT NULL,
PRIMARY KEY (hostid)
);