69 lines
3.8 KiB
C#
69 lines
3.8 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional
|
|
|
|
namespace Marco.Pms.DataAccess.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class Added_Collection_Related_Permissions : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.InsertData(
|
|
table: "Features",
|
|
columns: new[] { "Id", "Description", "IsActive", "ModuleId", "Name" },
|
|
values: new object[] { new Guid("fc586e7d-ed1a-45e5-bb51-9f34af98ec13"), "Collection Management is a feature that enables organizations to track, organize, and manage the status and recovery of receivables or assets efficiently throughout their lifecycle, supporting systematic follow-up and resolution of outstanding accounts.", true, new Guid("bf59fd88-b57a-4d67-bf01-3780f385896b"), "Collection Management" });
|
|
|
|
migrationBuilder.InsertData(
|
|
table: "FeaturePermissions",
|
|
columns: new[] { "Id", "Description", "FeatureId", "IsEnabled", "Name" },
|
|
values: new object[,]
|
|
{
|
|
{ new Guid("061d9ccd-85b4-4cb0-be06-2f9f32cebb72"), " Enables entry and processing of payment transactions.", new Guid("fc586e7d-ed1a-45e5-bb51-9f34af98ec13"), true, "Add Payment" },
|
|
{ new Guid("455187b4-fef1-41f9-b3d0-025d0b6302c3"), "Ability to modify collection properties, content, and access rights.", new Guid("fc586e7d-ed1a-45e5-bb51-9f34af98ec13"), true, "Edit Collection" },
|
|
{ new Guid("b93141fd-dbd3-4051-8f57-bf25d18e3555"), "Authorizes users to create new collections for organizing related resources and managing access", new Guid("fc586e7d-ed1a-45e5-bb51-9f34af98ec13"), true, "Create Collection" },
|
|
{ new Guid("c8d7eea5-4033-4aad-9ebe-76de49896830"), "View Collection is a permission that allows users to see and browse assets or items within a collection without making any modifications or edits to its contents.", new Guid("fc586e7d-ed1a-45e5-bb51-9f34af98ec13"), true, "View Collection" },
|
|
{ new Guid("dbf17591-09fe-4c93-9e1a-12db8f5cc5de"), "Collection Admin is a permission that grants a user full administrative control over collections, including creating, editing, managing access, and deleting collections within a system.", new Guid("fc586e7d-ed1a-45e5-bb51-9f34af98ec13"), true, "Collection Admin" }
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DeleteData(
|
|
table: "FeaturePermissions",
|
|
keyColumn: "Id",
|
|
keyValue: new Guid("061d9ccd-85b4-4cb0-be06-2f9f32cebb72"));
|
|
|
|
migrationBuilder.DeleteData(
|
|
table: "FeaturePermissions",
|
|
keyColumn: "Id",
|
|
keyValue: new Guid("455187b4-fef1-41f9-b3d0-025d0b6302c3"));
|
|
|
|
migrationBuilder.DeleteData(
|
|
table: "FeaturePermissions",
|
|
keyColumn: "Id",
|
|
keyValue: new Guid("b93141fd-dbd3-4051-8f57-bf25d18e3555"));
|
|
|
|
migrationBuilder.DeleteData(
|
|
table: "FeaturePermissions",
|
|
keyColumn: "Id",
|
|
keyValue: new Guid("c8d7eea5-4033-4aad-9ebe-76de49896830"));
|
|
|
|
migrationBuilder.DeleteData(
|
|
table: "FeaturePermissions",
|
|
keyColumn: "Id",
|
|
keyValue: new Guid("dbf17591-09fe-4c93-9e1a-12db8f5cc5de"));
|
|
|
|
migrationBuilder.DeleteData(
|
|
table: "Features",
|
|
keyColumn: "Id",
|
|
keyValue: new Guid("fc586e7d-ed1a-45e5-bb51-9f34af98ec13"));
|
|
}
|
|
}
|
|
}
|