DashBot/db/migrations/20160823171705_messages.sql
Arthur Poulet c9fde074c0
Change to Postgresql
* Remove mongodb (this database and the lib suck so much)
* Update in the readme the database installation
* Add migrations for users, points, messages, groups
  Note: Must be improved (FK, IX, ...)
* Update database and add Sql requests
2016-08-23 18:52:49 +02:00

13 lines
230 B
SQL

-- +micrate Up
CREATE TABLE messages (
id SERIAL PRIMARY KEY,
author TEXT NOT NULL,
dest TEXT NOT NULL,
content TEXT NOT NULL,
created_at TIMESTAMP NOT NULL,
read_at TIMESTAMP
);
-- +micrate Down
DROP TABLE messages;