3d-interface/sql/backup.pgsql

7 lines
98 B
Plaintext
Raw Normal View History

2015-05-18 11:11:06 +02:00
DROP TABLE IF EXISTS users;
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)
);