Unexpected identifier 'TABLE'
I used
I tried to use
but I get this error
drizzle-kit generate:pg to generate this schemaI tried to use
drizzle-kit push:pgbut I get this error
CREATE TABLE IF NOT EXISTS users (
user_id INT PRIMARY KEY,
username VARCHAR(255),
email VARCHAR(255)
);CREATE TABLE IF NOT EXISTS "users" (
^^^^^
SyntaxError: Unexpected identifier 'TABLE'drizzle-kit push doesn't use the generated migrations.push command that syncs the database with your corrent schema without using migrations.