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.
39 lines
1.5 KiB
39 lines
1.5 KiB
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Volo.CmsKit.Migrations
|
|
{
|
|
public partial class CmsRatings_Added : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "CmsRatings",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(nullable: false),
|
|
TenantId = table.Column<Guid>(nullable: true),
|
|
EntityType = table.Column<string>(maxLength: 64, nullable: false),
|
|
EntityId = table.Column<string>(maxLength: 64, nullable: false),
|
|
StarCount = table.Column<short>(nullable: false),
|
|
CreatorId = table.Column<Guid>(nullable: false),
|
|
CreationTime = table.Column<DateTime>(nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_CmsRatings", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_CmsRatings_TenantId_EntityType_EntityId",
|
|
table: "CmsRatings",
|
|
columns: new[] { "TenantId", "EntityType", "EntityId" });
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "CmsRatings");
|
|
}
|
|
}
|
|
}
|
|
|