1
0
mirror of https://github.com/actix/examples synced 2025-04-23 09:03:22 +02:00
2025-04-09 23:49:30 +01:00

6 lines
115 B
SQL

CREATE TABLE IF NOT EXISTS items
(
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
name VARCHAR NOT NULL
);