diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/schema.sql | 5 |
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 ); |