202504081005070_updateStandardAddModel.cs 570 B

1234567891011121314151617181920
  1. namespace ShwasherSys.Migrations
  2. {
  3. using System;
  4. using System.Data.Entity.Migrations;
  5. public partial class updateStandardAddModel : DbMigration
  6. {
  7. public override void Up()
  8. {
  9. AddColumn("dbo.StandardDetail", "Model", c => c.String());
  10. //AddColumn("dbo.N_ViewOrderItems", "CustomerRowNo", c => c.String());
  11. }
  12. public override void Down()
  13. {
  14. //DropColumn("dbo.N_ViewOrderItems", "CustomerRowNo");
  15. DropColumn("dbo.StandardDetail", "Model");
  16. }
  17. }
  18. }