lyrs/migrations/2023-11-11-073646_create_users/up.sql

6 lines
90 B
MySQL
Raw Normal View History

2023-11-12 09:56:23 -06:00
create table users (
id text primary key,
name text,
2023-11-12 11:15:14 -06:00
hashed_password binary
2023-11-12 09:56:23 -06:00
)