1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-09 05:08:32 +00:00
actix-web/examples/diesel/migrations/20170124012402_create_users/up.sql
2017-12-18 16:25:26 -08:00

4 lines
82 B
SQL

CREATE TABLE users (
id VARCHAR NOT NULL PRIMARY KEY,
name VARCHAR NOT NULL
)