mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
5 lines
82 B
SQL
5 lines
82 B
SQL
CREATE TABLE users (
|
|
id VARCHAR NOT NULL PRIMARY KEY,
|
|
name VARCHAR NOT NULL
|
|
)
|