mascarpone/migrations/users.db/01_create-users.sql

6 lines
132 B
MySQL
Raw Normal View History

2025-11-27 13:45:21 -06:00
create table if not exists users (
id integer primary key autoincrement,
username not null unique,
password not null
);