3d-interface/sql/backup.pgsql

23 lines
499 B
Plaintext
Raw Normal View History

2015-05-18 15:33:14 +02:00
DROP TABLE IF EXISTS users CASCADE;
DROP TABLE IF EXISTS arrowclicked CASCADE;
2015-05-19 11:03:53 +02:00
DROP TABLE IF EXISTS coinclicked CASCADE;
2015-05-18 09:52:04 +02:00
2015-05-18 11:11:06 +02:00
CREATE TABLE users (
2015-05-18 09:52:04 +02:00
id SERIAL PRIMARY KEY,
name char(50)
);
2015-05-18 15:33:14 +02:00
CREATE TABLE arrowclicked(
id SERIAL PRIMARY KEY,
user_id SERIAL REFERENCES users (id),
time TIMESTAMP DEFAULT NOW(),
arrow_id INTEGER
);
2015-05-19 11:03:53 +02:00
CREATE TABLE coinclicked(
id SERIAL PRIMARY KEY,
user_id SERIAL REFERENCES users (id),
time TIMESTAMP DEFAULT NOW(),
coin_id INTEGER
);