Initial commit
This commit is contained in:
7
sqlc/schema.sql
Normal file
7
sqlc/schema.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
|
||||
|
||||
CREATE TABLE IF NOT EXISTS food_items (
|
||||
guid UUID PRIMARY KEY,
|
||||
title VARCHAR(50) UNIQUE NOT NULL,
|
||||
description VARCHAR(500) NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user