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/20220319144958_ModifiedAt.cs | |
| parent | 2001c035fbb417ab0a3d42cfb04d17420bde4086 (diff) | |
| download | greatoffice-b7e39b59fd0fc7b5610ebff29035bf622079e0d8.tar.xz greatoffice-b7e39b59fd0fc7b5610ebff29035bf622079e0d8.zip | |
refactor: Change file structure
Diffstat (limited to 'server/src/Migrations/20220319144958_ModifiedAt.cs')
| -rw-r--r-- | server/src/Migrations/20220319144958_ModifiedAt.cs | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/server/src/Migrations/20220319144958_ModifiedAt.cs b/server/src/Migrations/20220319144958_ModifiedAt.cs deleted file mode 100644 index 028473d..0000000 --- a/server/src/Migrations/20220319144958_ModifiedAt.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using Microsoft.EntityFrameworkCore.Migrations; - -#nullable disable - -namespace IOL.GreatOffice.Api.Migrations -{ - public partial class ModifiedAt : Migration - { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.AddColumn<DateTime>( - name: "modified_at", - table: "users", - type: "timestamp with time zone", - nullable: true); - - migrationBuilder.AddColumn<DateTime>( - name: "modified_at", - table: "time_labels", - type: "timestamp with time zone", - nullable: true); - - migrationBuilder.AddColumn<DateTime>( - name: "modified_at", - table: "time_entries", - type: "timestamp with time zone", - nullable: true); - - migrationBuilder.AddColumn<DateTime>( - name: "modified_at", - table: "time_categories", - type: "timestamp with time zone", - nullable: true); - - migrationBuilder.AddColumn<DateTime>( - name: "modified_at", - table: "forgot_password_requests", - type: "timestamp with time zone", - nullable: true); - } - - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropColumn( - name: "modified_at", - table: "users"); - - migrationBuilder.DropColumn( - name: "modified_at", - table: "time_labels"); - - migrationBuilder.DropColumn( - name: "modified_at", - table: "time_entries"); - - migrationBuilder.DropColumn( - name: "modified_at", - table: "time_categories"); - - migrationBuilder.DropColumn( - name: "modified_at", - table: "forgot_password_requests"); - } - } -} |
