aboutsummaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorSteve McIntyre <steve.mcintyre@linaro.org>2014-12-16 18:18:50 +0000
committerSteve McIntyre <steve.mcintyre@linaro.org>2014-12-16 18:18:50 +0000
commit36e8e80720653a6af400059f8e27350624ed6fde (patch)
treeff334afa72cfdb4fa83d04a8c4027b8d8aedecee /db
parenta3c8767383f6292c1dc9f20f37781238fba8b3a8 (diff)
Lose the timestamp in the database, easier not to have it
Change-Id: Ia3804f36de28333177b4d3c992347678d7fa9f57
Diffstat (limited to 'db')
-rw-r--r--db/setup_db.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/setup_db.py b/db/setup_db.py
index 6f165c8..82ced99 100644
--- a/db/setup_db.py
+++ b/db/setup_db.py
@@ -41,7 +41,7 @@ cur.execute("CREATE TABLE port (port_id SERIAL, name VARCHAR(64), "
"is_trunk BOOLEAN, base_vlan_id INTEGER,"
"current_vlan_id INTEGER)")
cur.execute("CREATE TABLE vlan (vlan_id SERIAL, name VARCHAR(32),"
- "tag INTEGER, is_base_vlan BOOLEAN, creation_time TIMESTAMPTZ)")
+ "tag INTEGER, is_base_vlan BOOLEAN, creation_time TIMESTAMP)")
cur.execute("COMMIT;")