hostname-service/db/migrations/1_create_users_table.up.sql
2024-01-17 18:05:55 +01:00

6 lines
147 B
SQL

CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL UNIQUE,
password TEXT NOT NULL
);