SUBD/Forum/ForumDatabase/Migrations/20230429153115_Init2.cs

74 lines
2.0 KiB
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ForumDatabase.Migrations
{
/// <inheritdoc />
public partial class Init2 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "CategoryId",
table: "Topics",
type: "integer",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn<int>(
name: "UserId",
table: "Topics",
type: "integer",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn<int>(
name: "TopicId",
table: "Messages",
type: "integer",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn<int>(
name: "UserId",
table: "Messages",
type: "integer",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn<int>(
name: "UserId",
table: "Categories",
type: "integer",
nullable: false,
defaultValue: 0);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "CategoryId",
table: "Topics");
migrationBuilder.DropColumn(
name: "UserId",
table: "Topics");
migrationBuilder.DropColumn(
name: "TopicId",
table: "Messages");
migrationBuilder.DropColumn(
name: "UserId",
table: "Messages");
migrationBuilder.DropColumn(
name: "UserId",
table: "Categories");
}
}
}