summaryrefslogtreecommitdiff
path: root/migrations/20241005020942_login.sql
blob: 92d0875eb05da910b89827f3be0a49933f349ba3 (plain)
1
2
3
4
5
6
7
8
9
10
create table login (
	id text
		not null
		primary key,
	name text
		not null
		unique,
	password_hash text
		not null
);