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.
|
- <%
- '=======================================================================================================================
- ' MIGRATION: add_printstream_to_boards
- '=======================================================================================================================
-
- Sub Migration_Up(migration)
- migration.ExecuteSQL "ALTER TABLE [boards] ADD COLUMN [import_from_printstream] YESNO"
- migration.ExecuteSQL "ALTER TABLE [boards] ADD COLUMN [printstream_job_name] MEMO"
- End Sub
-
- Sub Migration_Down(migration)
- migration.ExecuteSQL "ALTER TABLE [boards] DROP COLUMN [printstream_job_name]"
- migration.ExecuteSQL "ALTER TABLE [boards] DROP COLUMN [import_from_printstream]"
- End Sub
- %>
|