diff --git a/README.md b/README.md index 25cb9d8..86f850e 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,13 @@ Here is the list of queries you can run in supabase SQL editor:
Create Courses Table + CREATE TABLE courses ( + id bigint primary key generated always as identity, + title text NOT NULL, + description text, + category text, + price numeric +) WITH (OIDS=FALSE); ``` INSERT INTO courses (title, description, category, price) VALUES