| 123456789101112131415161718 |
- namespace WePlatform.Migrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class Update201105 : DbMigration
- {
- public override void Up()
- {
- AlterColumn("dbo.WeModel_EvalModels", "QualitativeExpression", c => c.String(maxLength: 100));
- }
-
- public override void Down()
- {
- AlterColumn("dbo.WeModel_EvalModels", "QualitativeExpression", c => c.String());
- }
- }
- }
|