migration.sql 307 Bytes
Newer Older
wyuer's avatar
wyuer committed
1 2 3 4 5 6 7 8 9 10
-- CreateTable
CREATE TABLE `Folder` (
    `id` INTEGER NOT NULL AUTO_INCREMENT,
    `name` VARCHAR(191) NOT NULL,
    `created` DATETIME(3) NULL,
    `updated` DATETIME(3) NULL,

    UNIQUE INDEX `Folder_name_key`(`name`),
    PRIMARY KEY (`id`)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;