您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
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.