aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/Migrations/20220225143559_GithubUserMappings.cs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-10-05 14:45:21 +0200
committerivarlovlie <git@ivarlovlie.no>2022-10-05 14:45:21 +0200
commitb7e39b59fd0fc7b5610ebff29035bf622079e0d8 (patch)
tree64be84ebbdac9f7ceced983390c53b10d575af5c /server/src/Migrations/20220225143559_GithubUserMappings.cs
parent2001c035fbb417ab0a3d42cfb04d17420bde4086 (diff)
downloadgreatoffice-b7e39b59fd0fc7b5610ebff29035bf622079e0d8.tar.xz
greatoffice-b7e39b59fd0fc7b5610ebff29035bf622079e0d8.zip
refactor: Change file structure
Diffstat (limited to 'server/src/Migrations/20220225143559_GithubUserMappings.cs')
-rw-r--r--server/src/Migrations/20220225143559_GithubUserMappings.cs43
1 files changed, 0 insertions, 43 deletions
diff --git a/server/src/Migrations/20220225143559_GithubUserMappings.cs b/server/src/Migrations/20220225143559_GithubUserMappings.cs
deleted file mode 100644
index fc30c7a..0000000
--- a/server/src/Migrations/20220225143559_GithubUserMappings.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-using System;
-using Microsoft.EntityFrameworkCore.Migrations;
-
-#nullable disable
-
-namespace IOL.GreatOffice.Api.Migrations
-{
- public partial class GithubUserMappings : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.CreateTable(
- name: "github_user_mappings",
- columns: table => new
- {
- github_id = table.Column<string>(type: "text", nullable: false),
- user_id = table.Column<Guid>(type: "uuid", nullable: true),
- email = table.Column<string>(type: "text", nullable: true),
- refresh_token = table.Column<string>(type: "text", nullable: true)
- },
- constraints: table =>
- {
- table.PrimaryKey("pk_github_user_mappings", x => x.github_id);
- table.ForeignKey(
- name: "fk_github_user_mappings_users_user_id",
- column: x => x.user_id,
- principalTable: "users",
- principalColumn: "id");
- });
-
- migrationBuilder.CreateIndex(
- name: "ix_github_user_mappings_user_id",
- table: "github_user_mappings",
- column: "user_id");
- }
-
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropTable(
- name: "github_user_mappings");
- }
- }
-}