mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 16:32:59 +01:00
5 lines
82 B
MySQL
5 lines
82 B
MySQL
|
CREATE TABLE users (
|
||
|
id VARCHAR NOT NULL PRIMARY KEY,
|
||
|
name VARCHAR NOT NULL
|
||
|
)
|