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.

14 lines
506B

  1. <%
  2. '=======================================================================================================================
  3. ' MIGRATION: add_full_note_to_cards
  4. '=======================================================================================================================
  5. Sub Migration_Up(migration)
  6. migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [full_note] MEMO"
  7. End Sub
  8. Sub Migration_Down(migration)
  9. migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [full_note]"
  10. End Sub
  11. %>

Powered by TurnKey Linux.