Added user_id on Category

This commit is contained in:
Florian Sylvain
2023-01-27 13:09:17 +01:00
parent 766b9ee9fb
commit 7bd6edfd70
2 changed files with 15 additions and 1 deletions
@@ -0,0 +1,11 @@
/*
Warnings:
- Added the required column `user_id` to the `Category` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE `Category` ADD COLUMN `user_id` INTEGER NOT NULL;
-- AddForeignKey
ALTER TABLE `Category` ADD CONSTRAINT `Category_user_id_fkey` FOREIGN KEY (`user_id`) REFERENCES `User`(`id`) ON DELETE RESTRICT ON UPDATE CASCADE;