34968-vm/migrations/20251015_create_password_resets_table.sql
Flatlogic Bot e98192b894 V11
2025-10-15 04:36:26 +00:00

6 lines
200 B
SQL

CREATE TABLE IF NOT EXISTS "password_resets" (
"email" varchar(255) NOT NULL,
"token" varchar(255) NOT NULL,
"created_at" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY ("email")
);