202503260837391_updateShortMessage中Level变更成MsgLevel.cs 589 B

1234567891011121314151617181920
  1. namespace ShwasherSys.Migrations
  2. {
  3. using System;
  4. using System.Data.Entity.Migrations;
  5. public partial class updateShortMessage中Level变更成MsgLevel : DbMigration
  6. {
  7. public override void Up()
  8. {
  9. //AddColumn("dbo.ShortMessage", "MsgLevel", c => c.Int(nullable: false));
  10. //DropColumn("dbo.ShortMessage", "Level");
  11. }
  12. public override void Down()
  13. {
  14. //AddColumn("dbo.ShortMessage", "Level", c => c.Int(nullable: false));
  15. //DropColumn("dbo.ShortMessage", "MsgLevel");
  16. }
  17. }
  18. }