aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Migrations/20201216091145_Testing_Attributes_Validation.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2020-12-19 14:35:08 +0200
committertranstrike <transtrike@gmail.com>2020-12-19 14:35:08 +0200
commit3fc676497f4a4b1671e31cc3b8cd3e4c6ac96920 (patch)
treed9aa0f986732933d0d5efea630fec9ca26affc8a /src/DevHive.Web/Migrations/20201216091145_Testing_Attributes_Validation.cs
parentc8ce9f236f69cd0be2fb156171b53efa62930122 (diff)
downloadDevHive-3fc676497f4a4b1671e31cc3b8cd3e4c6ac96920.tar
DevHive-3fc676497f4a4b1671e31cc3b8cd3e4c6ac96920.tar.gz
DevHive-3fc676497f4a4b1671e31cc3b8cd3e4c6ac96920.zip
ALmost solved DP
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);
- }
- }
-}