Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <%
- 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"
- %>
|