diff --git a/server/migrations/0002_posts_table.sql b/server/migrations/0002_posts_table.sql index 3863b63..1b9601b 100644 --- a/server/migrations/0002_posts_table.sql +++ b/server/migrations/0002_posts_table.sql @@ -35,4 +35,4 @@ create INDEX IF NOT EXISTS posts_user_id_index ON posts (user_id); create INDEX IF NOT EXISTS posts_id_index ON posts (id); -CREATE INDEX idx_created_at_desc ON your_table (created_at DESC); \ No newline at end of file +CREATE INDEX idx_created_at_desc ON posts (created_at DESC); \ No newline at end of file