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

6 lines
88 B
MySQL
Raw Normal View History

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