summaryrefslogtreecommitdiff
path: root/src/mailman/database/tests/data/migration_postgres_1.sql (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Migrations will be replaced with Alchemy.Barry Warsaw2014-09-221-133/+0
| | | | | | We don't need the raw SQL schema stuff any more. We don't need the Version table any more.
* * The policy for archiving has now been collapsed into a single enum, calledBarry Warsaw2012-07-261-1/+1
| | | | | | | | | | | | | | | | | ArchivePolicy. This describes the three states of never archive, archive privately, and archive_publicly. (LP: #967238) Database -------- * Schema migrations (LP: #971013) - include_list_post_header -> allow_list_posts - news_prefix_subject_too -> nntp_prefix_subject_too - news_moderation -> newsgroup_moderation - archive and archive_private have been collapsed into archive_policy. - nntp_host has been removed. * The PostgreSQL port of the schema accidentally added a moderation_callback column to the mailinglist table. Since this is unused in Mailman, it was simply commented out of the base schema for PostgreSQL.
* Very nearly there with PostgreSQL support for testing the beta2 migration.Barry Warsaw2012-07-251-0/+133
- Improve migration logging - Disable pre_reset() and post_reset() on migrations, which might need to be re-enabled for SQLite support. - Be sure to record the migration version in PostgreSQL. - Parameterize the Error that will occur. - Better sample data for PostgreSQL and SQLite, which have different formats.