diff options
| -rw-r--r-- | src/mailman/database/schema/mm_20120407000000.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mailman/database/schema/mm_20120407000000.py b/src/mailman/database/schema/mm_20120407000000.py index 95b56c939..3e778ea8f 100644 --- a/src/mailman/database/schema/mm_20120407000000.py +++ b/src/mailman/database/schema/mm_20120407000000.py @@ -112,6 +112,9 @@ def upgrade_postgres(database, store, version, module_path): store.execute( 'ALTER TABLE mailinglist ' ' RENAME COLUMN news_moderation TO newsgroup_moderation;') + store.execute( + 'ALTER TABLE mailinglist ' + ' RENAME COLUMN include_list_post_header TO allow_list_posts;') # Do the column drop next. store.execute('ALTER TABLE mailinglist DROP COLUMN nntp_host;') # Now do the trickier collapsing of values. Add the new columns. |
