Files
myoffice/MyOffice.Migration.Sqlite/Migrations/20230408180149_phone.cs
T
2023-04-29 09:17:17 +03:00

29 lines
717 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace MyOffice.Migrations.Sqlite.Migrations
{
/// <inheritdoc />
public partial class phone : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Phone",
table: "Users",
type: "TEXT",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Phone",
table: "Users");
}
}
}