32 lines
		
	
	
		
			868 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			868 B
		
	
	
	
		
			C#
		
	
	
| using Microsoft.EntityFrameworkCore.Migrations;
 | |
| 
 | |
| #nullable disable
 | |
| 
 | |
| namespace IRaCIS.Core.Infra.EFCore.Migrations
 | |
| {
 | |
|     /// <inheritdoc />
 | |
|     public partial class addSubjectReson : Migration
 | |
|     {
 | |
|         /// <inheritdoc />
 | |
|         protected override void Up(MigrationBuilder migrationBuilder)
 | |
|         {
 | |
|             migrationBuilder.AddColumn<string>(
 | |
|                 name: "SuspendReason",
 | |
|                 table: "Subject",
 | |
|                 type: "nvarchar(400)",
 | |
|                 maxLength: 400,
 | |
|                 nullable: false,
 | |
|                 defaultValue: "",
 | |
|                 comment: "访视中止原因");
 | |
|         }
 | |
| 
 | |
|         /// <inheritdoc />
 | |
|         protected override void Down(MigrationBuilder migrationBuilder)
 | |
|         {
 | |
|             migrationBuilder.DropColumn(
 | |
|                 name: "SuspendReason",
 | |
|                 table: "Subject");
 | |
|         }
 | |
|     }
 | |
| }
 |