-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinitialisedb.py
executable file
·54 lines (45 loc) · 1.12 KB
/
initialisedb.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
import config
import psycopg2
import psycopg2.extras
try:
conn = psycopg2.connect(
"dbname='%s' user='%s' host='%s' password='%s'"%(
config.DB,
config.USER,
config.PG_SERVER,
config.PASS))
except:
print("Error connecting to database")
cur = conn.cursor(cursor_factory=psycopg2.extras.DictCursor)
print("Dropping old tables...")
try:
cur.execute("DROP TABLE IF EXISTS %s"%config.TABLE_DATA)
except:
print("Cannot drop table '%s'"%config.TABLE_DATA)
try:
cur.execute("DROP TABLE IF EXISTS %s"%config.TABLE_TOPICS)
except:
print("Cannot drop table '%s'"%config.TABLE_TOPICS)
print("Creating fresh tables...")
try:
cur.execute("""
CREATE TABLE """ + config.TABLE_DATA + """ (
id SERIAL PRIMARY KEY,
topic INTEGER NOT NULL,
data jsonb,
time timestamptz NOT NULL DEFAULT now()
);""")
except:
print("Error creating table " + config.TABLE_DATA)
try:
cur.execute("""
CREATE TABLE """ + config.TABLE_TOPICS + """ (
id SERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL
);""")
except:
print("Error creating table " + config.TABLE_TOPICS)
conn.commit()
conn.close()
print("Success!")