mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace API.Data.Migrations
|
|
{
|
|
public partial class AddUser : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Users",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "INTEGER", nullable: false)
|
|
.Annotation("Sqlite:Autoincrement", true),
|
|
UserName = table.Column<string>(type: "TEXT", nullable: true),
|
|
PasswordHash = table.Column<byte[]>(type: "BLOB", nullable: true),
|
|
PasswordSalt = table.Column<byte[]>(type: "BLOB", nullable: true),
|
|
Created = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
LastActive = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
IsAdmin = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
RowVersion = table.Column<uint>(type: "INTEGER", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Users", x => x.Id);
|
|
});
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Users");
|
|
}
|
|
}
|
|
}
|