aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Migrations/20201216091145_Testing_Attributes_Validation.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Migrations/20201216091145_Testing_Attributes_Validation.cs')
-rw-r--r--src/DevHive.Web/Migrations/20201216091145_Testing_Attributes_Validation.cs49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/DevHive.Web/Migrations/20201216091145_Testing_Attributes_Validation.cs b/src/DevHive.Web/Migrations/20201216091145_Testing_Attributes_Validation.cs
deleted file mode 100644
index 9892aa5..0000000
--- a/src/DevHive.Web/Migrations/20201216091145_Testing_Attributes_Validation.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-using Microsoft.EntityFrameworkCore.Migrations;
-
-namespace DevHive.Web.Migrations
-{
- public partial class Testing_Attributes_Validation : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "LastName",
- table: "AspNetUsers",
- type: "character varying(50)",
- maxLength: 50,
- nullable: false,
- oldClrType: typeof(string),
- oldType: "text");
-
- migrationBuilder.AlterColumn<string>(
- name: "FirstName",
- table: "AspNetUsers",
- type: "character varying(50)",
- maxLength: 50,
- nullable: false,
- oldClrType: typeof(string),
- oldType: "text");
- }
-
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "LastName",
- table: "AspNetUsers",
- type: "text",
- nullable: false,
- oldClrType: typeof(string),
- oldType: "character varying(50)",
- oldMaxLength: 50);
-
- migrationBuilder.AlterColumn<string>(
- name: "FirstName",
- table: "AspNetUsers",
- type: "text",
- nullable: false,
- oldClrType: typeof(string),
- oldType: "character varying(50)",
- oldMaxLength: 50);
- }
- }
-}