1
0
forked from noxious/server
Files
noxious_server/prisma/migrations/20240711171341_add_tiles_model/migration.sql
2024-07-11 19:52:44 +02:00

20 lines
487 B
SQL

/*
Warnings:
- You are about to drop the `TileTag` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
DROP TABLE `TileTag`;
-- CreateTable
CREATE TABLE `Tile` (
`id` VARCHAR(191) NOT NULL,
`name` VARCHAR(191) NOT NULL,
`tags` JSON NOT NULL,
`createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
`updatedAt` DATETIME(3) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;