Migrate donator requests to limit of 5

This commit is contained in:
Jorge Vargas 2025-05-10 00:02:16 -06:00
parent 1cd11fea2b
commit 042758d27c
5 changed files with 99 additions and 2 deletions

View file

@ -0,0 +1,7 @@
-- CreateTable
CREATE TABLE `Migration` (
`id` VARCHAR(191) NOT NULL,
`createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
PRIMARY KEY (`id`)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;