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_printstream_fields_to_cards
- '=======================================================================================================================
-
- Sub Migration_Up(migration)
- migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [customer_name] VARCHAR(255)"
- migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [delivery_date] DATETIME"
- migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [quantity] VARCHAR(50)"
- migration.ExecuteSQL "ALTER TABLE [cards] ADD COLUMN [notes] MEMO"
- End Sub
-
- Sub Migration_Down(migration)
- migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [notes]"
- migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [quantity]"
- migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [delivery_date]"
- migration.ExecuteSQL "ALTER TABLE [cards] DROP COLUMN [customer_name]"
- End Sub
- %>
|