mirror of
https://github.com/actix/actix-web.git
synced 2024-12-04 15:26:50 +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
|
||
|
)
|