diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-10-05 14:45:21 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-10-05 14:45:21 +0200 |
| commit | b7e39b59fd0fc7b5610ebff29035bf622079e0d8 (patch) | |
| tree | 64be84ebbdac9f7ceced983390c53b10d575af5c /server/src/Migrations/20220529190359_ApiAccessTokens.cs | |
| parent | 2001c035fbb417ab0a3d42cfb04d17420bde4086 (diff) | |
| download | greatoffice-b7e39b59fd0fc7b5610ebff29035bf622079e0d8.tar.xz greatoffice-b7e39b59fd0fc7b5610ebff29035bf622079e0d8.zip | |
refactor: Change file structure
Diffstat (limited to 'server/src/Migrations/20220529190359_ApiAccessTokens.cs')
| -rw-r--r-- | server/src/Migrations/20220529190359_ApiAccessTokens.cs | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/server/src/Migrations/20220529190359_ApiAccessTokens.cs b/server/src/Migrations/20220529190359_ApiAccessTokens.cs deleted file mode 100644 index dc44bee..0000000 --- a/server/src/Migrations/20220529190359_ApiAccessTokens.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using Microsoft.EntityFrameworkCore.Migrations; - -#nullable disable - -namespace IOL.GreatOffice.Api.Migrations -{ - public partial class ApiAccessTokens : Migration - { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.CreateTable( - name: "api_access_tokens", - columns: table => new - { - id = table.Column<Guid>(type: "uuid", nullable: false), - user_id = table.Column<Guid>(type: "uuid", nullable: true), - expiry_date = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), - allow_read = table.Column<bool>(type: "boolean", nullable: false), - allow_create = table.Column<bool>(type: "boolean", nullable: false), - allow_update = table.Column<bool>(type: "boolean", nullable: false), - allow_delete = table.Column<bool>(type: "boolean", nullable: false), - created_at = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), - modified_at = table.Column<DateTime>(type: "timestamp with time zone", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("pk_api_access_tokens", x => x.id); - table.ForeignKey( - name: "fk_api_access_tokens_users_user_id", - column: x => x.user_id, - principalTable: "users", - principalColumn: "id"); - }); - - migrationBuilder.CreateIndex( - name: "ix_api_access_tokens_user_id", - table: "api_access_tokens", - column: "user_id"); - } - - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "api_access_tokens"); - } - } -} |
