diff options
| author | Barry Warsaw | 2012-12-30 12:19:20 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2012-12-30 12:19:20 -0500 |
| commit | 0f233dd350594228c34e3de60ae8820c38b236d7 (patch) | |
| tree | cb0ac2dfa851e972b32673c18b5c8f7cc2b669eb /src/mailman/database/schema/mm_20121015000000.py | |
| parent | fc662999d425e9347f59f676861ee44ad81c2623 (diff) | |
| download | mailman-0f233dd350594228c34e3de60ae8820c38b236d7.tar.gz mailman-0f233dd350594228c34e3de60ae8820c38b236d7.tar.zst mailman-0f233dd350594228c34e3de60ae8820c38b236d7.zip | |
Diffstat (limited to 'src/mailman/database/schema/mm_20121015000000.py')
| -rw-r--r-- | src/mailman/database/schema/mm_20121015000000.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mailman/database/schema/mm_20121015000000.py b/src/mailman/database/schema/mm_20121015000000.py index 3e7b12555..1ef368bfc 100644 --- a/src/mailman/database/schema/mm_20121015000000.py +++ b/src/mailman/database/schema/mm_20121015000000.py @@ -17,10 +17,12 @@ """3.0b2 -> 3.0b3 schema migrations. -* bans.mailing_list -> bans.list_id +Renamed: + * bans.mailing_list -> bans.list_id -Added: -* mailinglist.style +Removed: + * mailinglist.new_member_options + * mailinglist.send_remindersn """ from __future__ import absolute_import, print_function, unicode_literals @@ -91,5 +93,6 @@ def upgrade_postgres(database, store, version, module_path): """.format(_make_listid(mailing_list), id)) store.execute('ALTER TABLE ban DROP COLUMN mailing_list;') store.execute('ALTER TABLE mailinglist DROP COLUMN new_member_options;') + store.execute('ALTER TABLE mailinglist DROP COLUMN send_reminders;') # Record the migration in the version table. database.load_schema(store, version, None, module_path) |
