<% '======================================================================================================================= ' 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 %>