Actix-Demo/migrations/2020-05-02-115427_create_users/up.sql

6 lines
104 B
MySQL
Raw Normal View History

2020-05-06 13:25:54 +00:00
-- Your SQL goes here
CREATE TABLE users (
id INTEGER NOT NULL PRIMARY KEY,
name VARCHAR NOT NULL
)