bearshop/schema.sql

7 lines
164 B
SQL

drop table if exists users;
create table users (
id integer primary key autoincrement,
username text not null,
password text not null,
uuid text not null
);