We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c5aeb commit 8814e02Copy full SHA for 8814e02
demo/README.md
@@ -34,7 +34,7 @@ You can run the following query to create the `tasks` table in your SQL Editor:
34
CREATE TABLE tasks (
35
id SERIAL PRIMARY KEY,
36
created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
37
- user UUID NOT NULL,
+ "user" UUID NOT NULL,
38
title TEXT,
39
completed BOOLEAN DEFAULT FALSE
40
);
@@ -43,7 +43,7 @@ CREATE TABLE tasks (
43
Go to your supabase project settings, API section and get the project API key and url and fill the `.env` with them:
44
45
```
46
-SUPABASE_URL="https://example.supabase.com"
+SUPABASE_URL="https://example.supabase.co"
47
SUPABASE_KEY="<your_key>"
48
49
0 commit comments