miniweb/migrations/2023-10-08-191013_create-users/up.sql

7 lines
103 B
SQL

-- Your SQL goes here
CREATE TABLE "users"(
"id" SERIAL PRIMARY KEY,
"username" VARCHAR NOT NULL
);