mirror of
https://github.com/actix/actix-web.git
synced 2024-12-18 22:26:37 +00:00
5 lines
82 B
MySQL
5 lines
82 B
MySQL
|
CREATE TABLE users (
|
||
|
id VARCHAR NOT NULL PRIMARY KEY,
|
||
|
name VARCHAR NOT NULL
|
||
|
)
|