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_full_note_to_cards
- '=======================================================================================================================
-
- Sub Migration_Up(migration)
- migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [full_note] MEMO"
- End Sub
-
- Sub Migration_Down(migration)
- migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [full_note]"
- End Sub
- %>
|