mirror of
https://github.com/actix/examples
synced 2025-04-23 09:03:22 +02:00
6 lines
115 B
SQL
6 lines
115 B
SQL
CREATE TABLE IF NOT EXISTS items
|
|
(
|
|
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
|
|
name VARCHAR NOT NULL
|
|
);
|