aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorKristian Lyngstol <kly@kly.no>2016-06-30 08:18:00 +0200
committerKristian Lyngstol <kly@kly.no>2016-06-30 08:18:00 +0200
commit2ed8912b353101bbe1b23fd74446eb9bce1a6751 (patch)
tree40872aacf2e0b1702a797b9702345c19764b232c /build
parentedfeef38b11d9d8054cac9e4f051b2068003c269 (diff)
sql: Bump schema to include multi-dhcpd-support
Diffstat (limited to 'build')
-rw-r--r--build/schema.sql5
1 files changed, 3 insertions, 2 deletions
diff --git a/build/schema.sql b/build/schema.sql
index 2cddcc3..9adc7ad 100644
--- a/build/schema.sql
+++ b/build/schema.sql
@@ -4,7 +4,7 @@
SET statement_timeout = 0;
SET lock_timeout = 0;
-SET client_encoding = 'SQL_ASCII';
+SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
@@ -86,7 +86,8 @@ CREATE TABLE dhcp (
switch integer,
"time" timestamp with time zone,
mac macaddr,
- ip inet
+ ip inet,
+ dhcp_server integer
);