4 namespace <%= MigrationNamespace
%>
7 /// Add <%= HumanName %> table to the database
9 [Migration(<%= Version
%>)]
10 public class Add
<%= ClassName
%>Table
: Migration
12 public override void Up()
14 Database
.AddTable("<%= ClassName %>",
15 new Column("Id", typeof(int), ColumnProperties
.PrimaryKeyWithIdentity
)<% for prop
in Properties
: %>,
16 new Column("<%= prop %>", typeof(string), 50)<% end
%>
21 public override void Down()
23 Database
.RemoveTable("<%= ClassName %>");