60 lines
2.3 KiB
SQL
60 lines
2.3 KiB
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.
|
|
- A unique constraint covering the columns `[username]` on the table `User` will be added. If there are existing duplicate values, this will fail.
|
|
- A unique constraint covering the columns `[mapId]` on the table `User` will be added. If there are existing duplicate values, this will fail.
|
|
- 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.
|
|
|
|
*/
|
|
-- DropIndex
|
|
DROP INDEX `User_email_key` ON `User`;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE `User` DROP COLUMN `email`,
|
|
DROP COLUMN `name`,
|
|
ADD COLUMN `mapId` INTEGER NULL,
|
|
ADD COLUMN `password` VARCHAR(191) NOT NULL,
|
|
ADD COLUMN `position_x` INTEGER NULL,
|
|
ADD COLUMN `position_y` INTEGER NULL,
|
|
ADD COLUMN `rotation` INTEGER NULL,
|
|
ADD COLUMN `username` VARCHAR(191) NOT NULL;
|
|
|
|
-- CreateTable
|
|
CREATE TABLE `Map` (
|
|
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
|
`name` VARCHAR(191) NOT NULL,
|
|
`width` INTEGER NOT NULL,
|
|
`height` INTEGER NOT NULL,
|
|
`tiles` JSON NOT NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
|
|
|
-- CreateTable
|
|
CREATE TABLE `Chatlogs` (
|
|
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
|
`userId` INTEGER NOT NULL,
|
|
`message` VARCHAR(191) NOT NULL,
|
|
`mapId` INTEGER NOT NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX `User_username_key` ON `User`(`username`);
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX `User_mapId_key` ON `User`(`mapId`);
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE `User` ADD CONSTRAINT `User_mapId_fkey` FOREIGN KEY (`mapId`) REFERENCES `Map`(`id`) ON DELETE SET NULL ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE `Chatlogs` ADD CONSTRAINT `Chatlogs_mapId_fkey` FOREIGN KEY (`mapId`) REFERENCES `Map`(`id`) ON DELETE RESTRICT ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE `Chatlogs` ADD CONSTRAINT `Chatlogs_userId_fkey` FOREIGN KEY (`userId`) REFERENCES `User`(`id`) ON DELETE RESTRICT ON UPDATE CASCADE;
|