1
0
mirror of https://github.com/actix/examples synced 2025-04-23 17:13:21 +02:00
2025-02-25 10:37:10 +03:00

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
);