forked from noxious/server
Complete refractor - we do sexy code only
This commit is contained in:
9
prisma/migrations/20240509002250_init/migration.sql
Normal file
9
prisma/migrations/20240509002250_init/migration.sql
Normal file
@ -0,0 +1,9 @@
|
||||
-- CreateTable
|
||||
CREATE TABLE `User` (
|
||||
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
||||
`email` VARCHAR(191) NOT NULL,
|
||||
`name` VARCHAR(191) NULL,
|
||||
|
||||
UNIQUE INDEX `User_email_key`(`email`),
|
||||
PRIMARY KEY (`id`)
|
||||
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
Reference in New Issue
Block a user