affluence/migrations/2023-05-15-142901_create_users/up.sql

8 lines
190 B
MySQL
Raw Normal View History

2023-05-15 17:38:13 +02:00
-- Your SQL goes here
CREATE TABLE users (
discord_id UNSIGNED BIG INT PRIMARY KEY NOT NULL,
email TEXT UNIQUE NOT NULL,
first_name TEXT NOT NULL,
last_name TEXT NOT NULL
);