1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 09:23:54 +00:00
actix-web/examples/diesel/migrations/20170124012402_create_users/up.sql

5 lines
82 B
MySQL
Raw Normal View History

2017-12-19 00:25:26 +00:00
CREATE TABLE users (
id VARCHAR NOT NULL PRIMARY KEY,
name VARCHAR NOT NULL
)