31 lines
979 B
C#
31 lines
979 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace AutoCatCore.Migrations
|
|
{
|
|
public partial class CreateDB : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Users",
|
|
columns: table => new
|
|
{
|
|
Email = table.Column<string>(nullable: false),
|
|
Token = table.Column<string>(nullable: true),
|
|
FirebaseIdToken = table.Column<string>(nullable: true),
|
|
FirebaseRefreshToken = table.Column<string>(nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Users", x => x.Email);
|
|
});
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Users");
|
|
}
|
|
}
|
|
}
|