mirror of
https://github.com/actix/examples
synced 2025-06-09 18:55:19 +02:00
5 lines
82 B
SQL
5 lines
82 B
SQL
CREATE TABLE users (
|
|
id VARCHAR NOT NULL PRIMARY KEY,
|
|
name VARCHAR NOT NULL
|
|
)
|