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.

16 lines
710B

  1. <%
  2. '=======================================================================================================================
  3. ' MIGRATION: add_printstream_to_boards
  4. '=======================================================================================================================
  5. Sub Migration_Up(migration)
  6. migration.ExecuteSQL "ALTER TABLE [boards] ADD COLUMN [import_from_printstream] YESNO"
  7. migration.ExecuteSQL "ALTER TABLE [boards] ADD COLUMN [printstream_job_name] MEMO"
  8. End Sub
  9. Sub Migration_Down(migration)
  10. migration.ExecuteSQL "ALTER TABLE [boards] DROP COLUMN [printstream_job_name]"
  11. migration.ExecuteSQL "ALTER TABLE [boards] DROP COLUMN [import_from_printstream]"
  12. End Sub
  13. %>

Powered by TurnKey Linux.