29 lines
741 B
C#
29 lines
741 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace DeepDrftWeb.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddCreatedByUserId : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<long>(
|
|
name: "created_by_user_id",
|
|
table: "track",
|
|
type: "bigint",
|
|
nullable: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "created_by_user_id",
|
|
table: "track");
|
|
}
|
|
}
|
|
}
|