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 init20240502001 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn<char>( name: "barcode_mode", table: "asbitem", type: "character(1)", maxLength: 1, nullable: false, defaultValueSql: "'0'", comment: "条码模式"); }
protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "barcode_mode", table: "asbitem"); } }}
|