You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Shentun.Peis.Migrations{ public partial class init20240426003 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "isSystem", table: "report_format_template", newName: "is_system");
migrationBuilder.RenameColumn( name: "isDefault", table: "report_format_template", newName: "is_default"); }
protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "is_system", table: "report_format_template", newName: "isSystem");
migrationBuilder.RenameColumn( name: "is_default", table: "report_format_template", newName: "isDefault"); } }}
|