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.

20 lines
978B

  1. <%
  2. '=======================================================================================================================
  3. ' MIGRATION: add_printstream_fields_to_cards
  4. '=======================================================================================================================
  5. Sub Migration_Up(migration)
  6. migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [customer_name] VARCHAR(255)"
  7. migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [delivery_date] DATETIME"
  8. migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [quantity] VARCHAR(50)"
  9. migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [notes] MEMO"
  10. End Sub
  11. Sub Migration_Down(migration)
  12. migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [notes]"
  13. migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [quantity]"
  14. migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [delivery_date]"
  15. migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [customer_name]"
  16. End Sub
  17. %>

Powered by TurnKey Linux.