forked from noxious/server
23 lines
913 B
SQL
23 lines
913 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `email` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `name` on the `User` table. All the data in the column will be lost.
|
|
- Added the required column `password` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `username` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- RedefineTables
|
|
PRAGMA foreign_keys=OFF;
|
|
CREATE TABLE "new_User" (
|
|
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
"username" TEXT NOT NULL,
|
|
"password" TEXT NOT NULL
|
|
);
|
|
INSERT INTO "new_User" ("id") SELECT "id" FROM "User";
|
|
DROP TABLE "User";
|
|
ALTER TABLE "new_User" RENAME TO "User";
|
|
CREATE UNIQUE INDEX "User_username_key" ON "User"("username");
|
|
PRAGMA foreign_key_check;
|
|
PRAGMA foreign_keys=ON;
|