30 lines
		
	
	
		
			808 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			808 B
		
	
	
	
		
			C#
		
	
	
| using Microsoft.EntityFrameworkCore.Migrations;
 | |
| 
 | |
| #nullable disable
 | |
| 
 | |
| namespace IRaCIS.Core.Infra.EFCore.Migrations
 | |
| {
 | |
|     /// <inheritdoc />
 | |
|     public partial class auditInspection : Migration
 | |
|     {
 | |
|         /// <inheritdoc />
 | |
|         protected override void Up(MigrationBuilder migrationBuilder)
 | |
|         {
 | |
|             migrationBuilder.AddColumn<bool>(
 | |
|                 name: "IsBeforeModifyView",
 | |
|                 table: "FrontAuditConfig",
 | |
|                 type: "bit",
 | |
|                 nullable: false,
 | |
|                 defaultValue: false);
 | |
|         }
 | |
| 
 | |
|         /// <inheritdoc />
 | |
|         protected override void Down(MigrationBuilder migrationBuilder)
 | |
|         {
 | |
|             migrationBuilder.DropColumn(
 | |
|                 name: "IsBeforeModifyView",
 | |
|                 table: "FrontAuditConfig");
 | |
|         }
 | |
|     }
 | |
| }
 |