Files
BD2PS/database/migrations/001_account.sql
yoncodes e58fd190b4 pushing
2025-10-28 21:21:28 -04:00

7 lines
255 B
SQL

CREATE TABLE "Account" (
"Uid" integer NOT NULL,
"UserName" TEXT(255) NOT NULL,
"Password" TEXT(255) NOT NULL,
PRIMARY KEY("Uid" AUTOINCREMENT)
);