You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <%
- Class Migration_06_Alter_Kit_Table
- Public Migration
-
- Public Sub Up
- Migration.Do "ALTER TABLE [Kit] " &_
- "ADD CreatedOn DATETIME;"
- Migration.Do "ALTER TABLE [Kit] " &_
- "ADD LabelsPrinted DATETIME;"
- Migration.Do "ALTER TABLE [Kit] " &_
- "ADD ExportedToSnailWorks DATETIME;"
- End Sub
-
- Public Sub Down
- Migration.Do "ALTER TABLE [Kit] " &_
- "DROP COLUMN CreatedOn;"
- Migration.Do "ALTER TABLE [Kit] " &_
- "DROP COLUMN LabelsPrinted;"
- Migration.Do "ALTER TABLE [Kit] " &_
- "DROP COLUMN ExportedToSnailWorks;"
- End Sub
- End Class
- Migrations.Add "Migration_06_Alter_Kit_Table"
- %>
|