30 lines
881 B
C#
30 lines
881 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Sledgemapper.Api.Migrations
|
|
{
|
|
public partial class AddCampaignToMapGuid : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<Guid>(
|
|
name: "CampaignId",
|
|
table: "Sessions",
|
|
type: "TEXT",
|
|
nullable: false,
|
|
oldClrType: typeof(int),
|
|
oldType: "INTEGER");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<int>(
|
|
name: "CampaignId",
|
|
table: "Sessions",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
oldClrType: typeof(Guid),
|
|
oldType: "TEXT");
|
|
}
|
|
}
|
|
}
|