go-sample-webpage/database/migrations/1_initialize_schema.up.sql
2021-11-08 02:25:36 +01:00

6 lines
No EOL
145 B
SQL

CREATE TABLE user (
username VARCHAR(250),
password VARCHAR(250)
);
INSERT INTO `user` (`username`, `password`) VALUES ("test", "test");