No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- <%
- 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"
- %>
|