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

7 lines
178 B
MySQL
Raw Normal View History

create table if not exists users (
id integer primary key autoincrement,
username not null unique,
password not null,
ephemeral boolean not null default false
);