42 lines
1.7 KiB
C#
42 lines
1.7 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace JOBot.Backend.Data.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class Initial : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Users",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
UserId = table.Column<long>(type: "bigint", nullable: false),
|
|
Username = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
AccessToken = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
RefreshToken = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
Eula = table.Column<bool>(type: "boolean", nullable: false),
|
|
CvUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Users", x => x.Id);
|
|
table.UniqueConstraint("AK_Users_UserId", x => x.UserId);
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Users");
|
|
}
|
|
}
|
|
}
|