using Microsoft.Data.Entity.Migrations; namespace Yavsc.Migrations { public partial class contact : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey(name: "FK_IdentityRoleClaim_IdentityRole_RoleId", table: "AspNetRoleClaims"); migrationBuilder.DropForeignKey(name: "FK_IdentityUserClaim_ApplicationUser_UserId", table: "AspNetUserClaims"); migrationBuilder.DropForeignKey(name: "FK_IdentityUserLogin_ApplicationUser_UserId", table: "AspNetUserLogins"); migrationBuilder.DropForeignKey(name: "FK_IdentityUserRole_IdentityRole_RoleId", table: "AspNetUserRoles"); migrationBuilder.DropForeignKey(name: "FK_IdentityUserRole_ApplicationUser_UserId", table: "AspNetUserRoles"); migrationBuilder.DropForeignKey(name: "FK_AccountBalance_AccountHistory_HistoryId", table: "AccountBalance"); migrationBuilder.DropForeignKey(name: "FK_AccountBalance_ApplicationUser_UserId", table: "AccountBalance"); migrationBuilder.DropForeignKey(name: "FK_BalanceImpact_AccountHistory_TargetId", table: "BalanceImpact"); migrationBuilder.DropForeignKey(name: "FK_Blog_ApplicationUser_AuthorId", table: "Blog"); migrationBuilder.DropForeignKey(name: "FK_Query_ApplicationUser_ClientId", table: "Query"); migrationBuilder.DropForeignKey(name: "FK_Query_Location_LocationId", table: "Query"); migrationBuilder.DropForeignKey(name: "FK_Query_ApplicationUser_PerformerId", table: "Query"); migrationBuilder.DropForeignKey(name: "FK_CircleMember_Circle_CircleId", table: "CircleMember"); migrationBuilder.DropForeignKey(name: "FK_CircleMember_ApplicationUser_MemberId", table: "CircleMember"); migrationBuilder.DropForeignKey(name: "FK_Command_ApplicationUser_ClientId", table: "Command"); migrationBuilder.DropForeignKey(name: "FK_Command_ApplicationUser_PerformerId", table: "Command"); migrationBuilder.DropForeignKey(name: "FK_PerformerProfile_Activity_ActivityCode", table: "PerformerProfile"); migrationBuilder.DropForeignKey(name: "FK_PerformerProfile_Location_OrganisationAddressId", table: "PerformerProfile"); migrationBuilder.DropForeignKey(name: "FK_PerformerProfile_ApplicationUser_PerfomerId", table: "PerformerProfile"); migrationBuilder.DropColumn(name: "Final", table: "Command"); migrationBuilder.DropColumn(name: "Final", table: "Query"); migrationBuilder.CreateTable( name: "BaseProduct", columns: table => new { Id = table.Column(nullable: false) .Annotation("Npgsql:Serial", true), Description = table.Column(nullable: true), Name = table.Column(nullable: true) }, constraints: table => { table.PrimaryKey("PK_BaseProduct", x => x.Id); }); migrationBuilder.CreateTable( name: "Contact", columns: table => new { OwnerId = table.Column(nullable: false), UserId = table.Column(nullable: false) }, constraints: table => { table.PrimaryKey("PK_Contact", x => new { x.OwnerId, x.UserId }); table.ForeignKey( name: "FK_Contact_ApplicationUser_OwnerId", column: x => x.OwnerId, principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "Service", columns: table => new { Id = table.Column(nullable: false) .Annotation("Npgsql:Serial", true), ContextId = table.Column(nullable: true), Depth = table.Column(nullable: false), Description = table.Column(nullable: true), Height = table.Column(nullable: false), Name = table.Column(nullable: true), Weight = table.Column(nullable: false), Width = table.Column(nullable: false) }, constraints: table => { table.PrimaryKey("PK_Service", x => x.Id); table.ForeignKey( name: "FK_Service_Activity_ContextId", column: x => x.ContextId, principalTable: "Activity", principalColumn: "Code", onDelete: ReferentialAction.Restrict); }); migrationBuilder.CreateTable( name: "CommandLine", columns: table => new { Id = table.Column(nullable: false) .Annotation("Npgsql:Serial", true), ArticleId = table.Column(nullable: true), CommandId = table.Column(nullable: true), Comment = table.Column(nullable: true), Count = table.Column(nullable: false), EstimateId = table.Column(nullable: true), QueryId = table.Column(nullable: true), UnitaryCost = table.Column(nullable: false) }, constraints: table => { table.PrimaryKey("PK_CommandLine", x => x.Id); table.ForeignKey( name: "FK_CommandLine_BaseProduct_ArticleId", column: x => x.ArticleId, principalTable: "BaseProduct", principalColumn: "Id", onDelete: ReferentialAction.Restrict); table.ForeignKey( name: "FK_CommandLine_Command_CommandId", column: x => x.CommandId, principalTable: "Command", principalColumn: "Id", onDelete: ReferentialAction.Restrict); table.ForeignKey( name: "FK_CommandLine_Estimate_EstimateId", column: x => x.EstimateId, principalTable: "Estimate", principalColumn: "Id", onDelete: ReferentialAction.Restrict); table.ForeignKey( name: "FK_CommandLine_Query_QueryId", column: x => x.QueryId, principalTable: "Query", principalColumn: "Id", onDelete: ReferentialAction.Restrict); }); migrationBuilder.AddColumn( name: "Lag", table: "Command", nullable: false, defaultValue: 0); migrationBuilder.AddColumn( name: "Lag", table: "Query", nullable: false, defaultValue: 0); migrationBuilder.AddColumn( name: "PostalAddressId", table: "AspNetUsers", nullable: true); migrationBuilder.AddForeignKey( name: "FK_IdentityRoleClaim_IdentityRole_RoleId", table: "AspNetRoleClaims", column: "RoleId", principalTable: "AspNetRoles", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_IdentityUserClaim_ApplicationUser_UserId", table: "AspNetUserClaims", column: "UserId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_IdentityUserLogin_ApplicationUser_UserId", table: "AspNetUserLogins", column: "UserId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_IdentityUserRole_IdentityRole_RoleId", table: "AspNetUserRoles", column: "RoleId", principalTable: "AspNetRoles", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_IdentityUserRole_ApplicationUser_UserId", table: "AspNetUserRoles", column: "UserId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_AccountBalance_AccountHistory_HistoryId", table: "AccountBalance", column: "HistoryId", principalTable: "AccountHistory", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_AccountBalance_ApplicationUser_UserId", table: "AccountBalance", column: "UserId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_ApplicationUser_Location_PostalAddressId", table: "AspNetUsers", column: "PostalAddressId", principalTable: "Location", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_BalanceImpact_AccountHistory_TargetId", table: "BalanceImpact", column: "TargetId", principalTable: "AccountHistory", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_Blog_ApplicationUser_AuthorId", table: "Blog", column: "AuthorId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_Query_ApplicationUser_ClientId", table: "Query", column: "ClientId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_Query_Location_LocationId", table: "Query", column: "LocationId", principalTable: "Location", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_Query_PerformerProfile_PerformerId", table: "Query", column: "PerformerId", principalTable: "PerformerProfile", principalColumn: "PerfomerId", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_CircleMember_Circle_CircleId", table: "CircleMember", column: "CircleId", principalTable: "Circle", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_CircleMember_ApplicationUser_MemberId", table: "CircleMember", column: "MemberId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_Command_ApplicationUser_ClientId", table: "Command", column: "ClientId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_Command_PerformerProfile_PerformerId", table: "Command", column: "PerformerId", principalTable: "PerformerProfile", principalColumn: "PerfomerId", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_PerformerProfile_Activity_ActivityCode", table: "PerformerProfile", column: "ActivityCode", principalTable: "Activity", principalColumn: "Code", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_PerformerProfile_Location_OrganisationAddressId", table: "PerformerProfile", column: "OrganisationAddressId", principalTable: "Location", principalColumn: "Id", onDelete: ReferentialAction.Cascade); migrationBuilder.AddForeignKey( name: "FK_PerformerProfile_ApplicationUser_PerfomerId", table: "PerformerProfile", column: "PerfomerId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey(name: "FK_IdentityRoleClaim_IdentityRole_RoleId", table: "AspNetRoleClaims"); migrationBuilder.DropForeignKey(name: "FK_IdentityUserClaim_ApplicationUser_UserId", table: "AspNetUserClaims"); migrationBuilder.DropForeignKey(name: "FK_IdentityUserLogin_ApplicationUser_UserId", table: "AspNetUserLogins"); migrationBuilder.DropForeignKey(name: "FK_IdentityUserRole_IdentityRole_RoleId", table: "AspNetUserRoles"); migrationBuilder.DropForeignKey(name: "FK_IdentityUserRole_ApplicationUser_UserId", table: "AspNetUserRoles"); migrationBuilder.DropForeignKey(name: "FK_AccountBalance_AccountHistory_HistoryId", table: "AccountBalance"); migrationBuilder.DropForeignKey(name: "FK_AccountBalance_ApplicationUser_UserId", table: "AccountBalance"); migrationBuilder.DropForeignKey(name: "FK_ApplicationUser_Location_PostalAddressId", table: "AspNetUsers"); migrationBuilder.DropForeignKey(name: "FK_BalanceImpact_AccountHistory_TargetId", table: "BalanceImpact"); migrationBuilder.DropForeignKey(name: "FK_Blog_ApplicationUser_AuthorId", table: "Blog"); migrationBuilder.DropForeignKey(name: "FK_Query_ApplicationUser_ClientId", table: "Query"); migrationBuilder.DropForeignKey(name: "FK_Query_Location_LocationId", table: "Query"); migrationBuilder.DropForeignKey(name: "FK_Query_PerformerProfile_PerformerId", table: "Query"); migrationBuilder.DropForeignKey(name: "FK_CircleMember_Circle_CircleId", table: "CircleMember"); migrationBuilder.DropForeignKey(name: "FK_CircleMember_ApplicationUser_MemberId", table: "CircleMember"); migrationBuilder.DropForeignKey(name: "FK_Command_ApplicationUser_ClientId", table: "Command"); migrationBuilder.DropForeignKey(name: "FK_Command_PerformerProfile_PerformerId", table: "Command"); migrationBuilder.DropForeignKey(name: "FK_PerformerProfile_Activity_ActivityCode", table: "PerformerProfile"); migrationBuilder.DropForeignKey(name: "FK_PerformerProfile_Location_OrganisationAddressId", table: "PerformerProfile"); migrationBuilder.DropForeignKey(name: "FK_PerformerProfile_ApplicationUser_PerfomerId", table: "PerformerProfile"); migrationBuilder.DropColumn(name: "Lag", table: "Command"); migrationBuilder.DropColumn(name: "Lag", table: "Query"); migrationBuilder.DropColumn(name: "PostalAddressId", table: "AspNetUsers"); migrationBuilder.DropTable("CommandLine"); migrationBuilder.DropTable("Contact"); migrationBuilder.DropTable("Service"); migrationBuilder.DropTable("BaseProduct"); migrationBuilder.AddColumn( name: "Final", table: "Command", nullable: true); migrationBuilder.AddColumn( name: "Final", table: "Query", nullable: true); migrationBuilder.AddForeignKey( name: "FK_IdentityRoleClaim_IdentityRole_RoleId", table: "AspNetRoleClaims", column: "RoleId", principalTable: "AspNetRoles", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_IdentityUserClaim_ApplicationUser_UserId", table: "AspNetUserClaims", column: "UserId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_IdentityUserLogin_ApplicationUser_UserId", table: "AspNetUserLogins", column: "UserId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_IdentityUserRole_IdentityRole_RoleId", table: "AspNetUserRoles", column: "RoleId", principalTable: "AspNetRoles", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_IdentityUserRole_ApplicationUser_UserId", table: "AspNetUserRoles", column: "UserId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_AccountBalance_AccountHistory_HistoryId", table: "AccountBalance", column: "HistoryId", principalTable: "AccountHistory", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_AccountBalance_ApplicationUser_UserId", table: "AccountBalance", column: "UserId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_BalanceImpact_AccountHistory_TargetId", table: "BalanceImpact", column: "TargetId", principalTable: "AccountHistory", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_Blog_ApplicationUser_AuthorId", table: "Blog", column: "AuthorId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_Query_ApplicationUser_ClientId", table: "Query", column: "ClientId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_Query_Location_LocationId", table: "Query", column: "LocationId", principalTable: "Location", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_Query_ApplicationUser_PerformerId", table: "Query", column: "PerformerId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_CircleMember_Circle_CircleId", table: "CircleMember", column: "CircleId", principalTable: "Circle", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_CircleMember_ApplicationUser_MemberId", table: "CircleMember", column: "MemberId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_Command_ApplicationUser_ClientId", table: "Command", column: "ClientId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_Command_ApplicationUser_PerformerId", table: "Command", column: "PerformerId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_PerformerProfile_Activity_ActivityCode", table: "PerformerProfile", column: "ActivityCode", principalTable: "Activity", principalColumn: "Code", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_PerformerProfile_Location_OrganisationAddressId", table: "PerformerProfile", column: "OrganisationAddressId", principalTable: "Location", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_PerformerProfile_ApplicationUser_PerfomerId", table: "PerformerProfile", column: "PerfomerId", principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); } } }