picobook/src/database/migrations/1-first-migration.sql

5 lines
59 B
MySQL
Raw Normal View History

2023-10-29 19:28:07 +00:00
CREATE TABLE users (
id text,
2023-10-31 20:31:17 -07:00
name text,
password text
2023-10-29 19:28:07 +00:00
)