Files
packager/migrations/20230819125455_add_user.sql

7 lines
139 B
MySQL
Raw Normal View History

2023-08-29 21:34:00 +02:00
CREATE TABLE "users" (
id VARCHAR(36) NOT NULL,
fullname TEXT NOT NULL,
username TEXT NOT NULL UNIQUE,
PRIMARY KEY (id)
);