mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
5.4 KiB
106 lines
5.4 KiB
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Volo.CmsKit.Migrations
|
|
{
|
|
public partial class UrlSlugToSlug : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "CmsBlogPosts",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
|
BlogId = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
|
Title = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: false),
|
|
Slug = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false),
|
|
ShortDescription = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true),
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true),
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false),
|
|
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_CmsBlogPosts", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_CmsBlogPosts_CmsUsers_CreatorId",
|
|
column: x => x.CreatorId,
|
|
principalTable: "CmsUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
name: "FK_CmsBlogPosts_CmsUsers_DeleterId",
|
|
column: x => x.DeleterId,
|
|
principalTable: "CmsUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
name: "FK_CmsBlogPosts_CmsUsers_LastModifierId",
|
|
column: x => x.LastModifierId,
|
|
principalTable: "CmsUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "CmsBlogs",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
|
Name = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: false),
|
|
Slug = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: false),
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true),
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false),
|
|
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_CmsBlogs", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_CmsBlogPosts_CreatorId",
|
|
table: "CmsBlogPosts",
|
|
column: "CreatorId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_CmsBlogPosts_DeleterId",
|
|
table: "CmsBlogPosts",
|
|
column: "DeleterId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_CmsBlogPosts_LastModifierId",
|
|
table: "CmsBlogPosts",
|
|
column: "LastModifierId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_CmsBlogPosts_Slug_BlogId",
|
|
table: "CmsBlogPosts",
|
|
columns: new[] { "Slug", "BlogId" });
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "CmsBlogPosts");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "CmsBlogs");
|
|
}
|
|
}
|
|
}
|
|
|