32 lines
814 B
C#
32 lines
814 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Project.Web.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class Sechste : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "PASSWORD",
|
|
schema: "dbo",
|
|
table: "USER",
|
|
type: "nvarchar(max)",
|
|
nullable: false,
|
|
defaultValue: "");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "PASSWORD",
|
|
schema: "dbo",
|
|
table: "USER");
|
|
}
|
|
}
|
|
}
|