mirror of
https://github.com/actix/examples
synced 2025-04-23 17:13:21 +02:00
7 lines
137 B
SQL
7 lines
137 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE IF NOT EXISTS items
|
|
(
|
|
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
|
|
name VARCHAR NOT NULL
|
|
);
|