Diesel migrations

This commit is contained in:
2022-11-06 02:39:13 +03:00
parent 960a509385
commit 39af0b2c10
18 changed files with 225 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE users

View File

@ -0,0 +1,11 @@
-- Your SQL goes here
-- Your SQL goes here
CREATE TABLE users (
id BIGINT PRIMARY KEY,
first_name TEXT NOT NULL,
last_name TEXT,
username TEXT,
karma INT DEFAULT 0,
messages_count INT DEFAULT 0
)