| 1234567891011121314151617181920 |
- namespace ShwasherSys.Migrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class 排产单新增是否上传质证书和短消息新增系统类型字段 : DbMigration
- {
- public override void Up()
- {
- //AddColumn("dbo.ProductionOrders", "HasUploadZs", c => c.Int(nullable: false));
- //AddColumn("dbo.ShortMessage", "Level", c => c.Int(nullable: false));
- }
- public override void Down()
- {
- //DropColumn("dbo.ShortMessage", "Level");
- //DropColumn("dbo.ProductionOrders", "HasUploadZs");
- }
- }
- }
|