46 lines
1.4 KiB
C#
46 lines
1.4 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Sledgemapper.Api.Migrations
|
|
{
|
|
public partial class UserIdGuid : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<Guid>(
|
|
name: "UserId",
|
|
table: "UserConnections",
|
|
type: "TEXT",
|
|
nullable: false,
|
|
oldClrType: typeof(int),
|
|
oldType: "INTEGER");
|
|
|
|
migrationBuilder.AlterColumn<Guid>(
|
|
name: "UserId",
|
|
table: "SessionUsers",
|
|
type: "TEXT",
|
|
nullable: false,
|
|
oldClrType: typeof(int),
|
|
oldType: "INTEGER");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<int>(
|
|
name: "UserId",
|
|
table: "UserConnections",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
oldClrType: typeof(Guid),
|
|
oldType: "TEXT");
|
|
|
|
migrationBuilder.AlterColumn<int>(
|
|
name: "UserId",
|
|
table: "SessionUsers",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
oldClrType: typeof(Guid),
|
|
oldType: "TEXT");
|
|
}
|
|
}
|
|
}
|