Basic services; Version 0.2.0

This commit is contained in:
Aslan 2025-12-27 01:51:42 +01:00
parent cae53fab61
commit 72d7b22891
11 changed files with 483 additions and 11 deletions

View file

@ -0,0 +1,12 @@
/*
Warnings:
- Made the column `name` on table `Channel` required. This step will fail if there are existing NULL values in that column.
- Made the column `name` on table `Role` required. This step will fail if there are existing NULL values in that column.
*/
-- AlterTable
ALTER TABLE "Channel" ALTER COLUMN "name" SET NOT NULL;
-- AlterTable
ALTER TABLE "Role" ALTER COLUMN "name" SET NOT NULL;