mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-07 00:56:40 +00:00
26 lines
655 B
C#
26 lines
655 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace PodNoms.Api.Migrations
|
|
{
|
|
public partial class UidToUser : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Uid",
|
|
table: "Users",
|
|
maxLength: 32,
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Uid",
|
|
table: "Users");
|
|
}
|
|
}
|
|
}
|