diff options
author | tilly-Q <nattilypigeonfowl@gmail.com> | 2013-08-20 15:11:02 -0400 |
---|---|---|
committer | tilly-Q <nattilypigeonfowl@gmail.com> | 2013-08-20 15:24:29 -0400 |
commit | 2c901db023cd29d8f12408470245c9a5b8b911f1 (patch) | |
tree | 658dcc580781c1bc09d67346f78f007305263ce6 /mediagoblin/db | |
parent | 9e204e49c9670b0e004dc9b62bf3b698b7534325 (diff) | |
download | mediagoblin-2c901db023cd29d8f12408470245c9a5b8b911f1.tar.lz mediagoblin-2c901db023cd29d8f12408470245c9a5b8b911f1.tar.xz mediagoblin-2c901db023cd29d8f12408470245c9a5b8b911f1.zip |
This commit was just to fix a few of the errors with the merging and to
make sure that all of the previous tests work fine.
Diffstat (limited to 'mediagoblin/db')
-rw-r--r-- | mediagoblin/db/migrations.py | 147 | ||||
-rw-r--r-- | mediagoblin/db/models.py | 13 |
2 files changed, 81 insertions, 79 deletions
diff --git a/mediagoblin/db/migrations.py b/mediagoblin/db/migrations.py index 0eedc5d4..762d17e6 100644 --- a/mediagoblin/db/migrations.py +++ b/mediagoblin/db/migrations.py @@ -383,79 +383,6 @@ def pw_hash_nullable(db): constraint = UniqueConstraint('username', table=user_table) constraint.create() -class ReportBase_v0(declarative_base()): - __tablename__ = 'core__reports' - id = Column(Integer, primary_key=True) - reporter_id = Column(Integer, ForeignKey(User.id), nullable=False) - report_content = Column(UnicodeText) - reported_user_id = Column(Integer, ForeignKey(User.id), nullable=False) - created = Column(DateTime, nullable=False, default=datetime.datetime.now) - discriminator = Column('type', Unicode(50)) - __mapper_args__ = {'polymorphic_on': discriminator} - -class CommentReport_v0(ReportBase_v0): - __tablename__ = 'core__reports_on_comments' - __mapper_args__ = {'polymorphic_identity': 'comment_report'} - - id = Column('id',Integer, ForeignKey('core__reports.id'), - primary_key=True) - comment_id = Column(Integer, ForeignKey(MediaComment.id), nullable=False) - -class MediaReport_v0(ReportBase_v0): - __tablename__ = 'core__reports_on_media' - __mapper_args__ = {'polymorphic_identity': 'media_report'} - - id = Column('id',Integer, ForeignKey('core__reports.id'), primary_key=True) - media_entry_id = Column(Integer, ForeignKey(MediaEntry.id), nullable=False) - -class ArchivedReport_v0(ReportBase_v0): - __tablename__ = 'core__reports_archived' - __mapper_args__ = {'polymorphic_identity': 'archived_report'} - - id = Column('id',Integer, ForeignKey('core__reports.id'), primary_key=True) - media_entry_id = Column(Integer, ForeignKey(MediaEntry.id)) - comment_id = Column(Integer, ForeignKey(MediaComment.id)) - resolver_id = Column(Integer, ForeignKey(User.id), nullable=False) - resolved_time = Column(DateTime) - result = Column(UnicodeText) - -class UserBan_v0(declarative_base()): - __tablename__ = 'core__user_bans' - user_id = Column('id',Integer, ForeignKey(User.id), nullable=False, - primary_key=True) - expiration_date = Column(DateTime) - reason = Column(UnicodeText, nullable=False) - -class Privilege_v0(declarative_base()): - __tablename__ = 'core__privileges' - id = Column(Integer, nullable=False, primary_key=True, unique=True) - privilege_name = Column(Unicode, nullable=False, unique=True) - -class PrivilegeUserAssociation_v0(declarative_base()): - __tablename__ = 'core__privileges_users' - group_id = Column( - 'core__privilege_id', - Integer, - ForeignKey(User.id), - primary_key=True) - user_id = Column( - 'core__user_id', - Integer, - ForeignKey(Privilege.id), - primary_key=True) - -@RegisterMigration(14, MIGRATIONS) -def create_moderation_tables(db): - ReportBase_v0.__table__.create(db.bind) - CommentReport_v0.__table__.create(db.bind) - MediaReport_v0.__table__.create(db.bind) - ArchivedReport_v0.__table__.create(db.bind) - UserBan_v0.__table__.create(db.bind) - Privilege_v0.__table__.create(db.bind) - PrivilegeUserAssociation_v0.__table__.create(db.bind) - db.commit() - - # oauth1 migrations class Client_v0(declarative_base()): """ @@ -533,3 +460,77 @@ def create_oauth1_tables(db): NonceTimestamp_v0.__table__.create(db.bind) db.commit() + +class ReportBase_v0(declarative_base()): + __tablename__ = 'core__reports' + id = Column(Integer, primary_key=True) + reporter_id = Column(Integer, ForeignKey(User.id), nullable=False) + report_content = Column(UnicodeText) + reported_user_id = Column(Integer, ForeignKey(User.id), nullable=False) + created = Column(DateTime, nullable=False, default=datetime.datetime.now) + discriminator = Column('type', Unicode(50)) + __mapper_args__ = {'polymorphic_on': discriminator} + +class CommentReport_v0(ReportBase_v0): + __tablename__ = 'core__reports_on_comments' + __mapper_args__ = {'polymorphic_identity': 'comment_report'} + + id = Column('id',Integer, ForeignKey('core__reports.id'), + primary_key=True) + comment_id = Column(Integer, ForeignKey(MediaComment.id), nullable=False) + +class MediaReport_v0(ReportBase_v0): + __tablename__ = 'core__reports_on_media' + __mapper_args__ = {'polymorphic_identity': 'media_report'} + + id = Column('id',Integer, ForeignKey('core__reports.id'), primary_key=True) + media_entry_id = Column(Integer, ForeignKey(MediaEntry.id), nullable=False) + +class ArchivedReport_v0(ReportBase_v0): + __tablename__ = 'core__reports_archived' + __mapper_args__ = {'polymorphic_identity': 'archived_report'} + + id = Column('id',Integer, ForeignKey('core__reports.id'), primary_key=True) + media_entry_id = Column(Integer, ForeignKey(MediaEntry.id)) + comment_id = Column(Integer, ForeignKey(MediaComment.id)) + resolver_id = Column(Integer, ForeignKey(User.id), nullable=False) + resolved_time = Column(DateTime) + result = Column(UnicodeText) + +class UserBan_v0(declarative_base()): + __tablename__ = 'core__user_bans' + user_id = Column('id',Integer, ForeignKey(User.id), nullable=False, + primary_key=True) + expiration_date = Column(DateTime) + reason = Column(UnicodeText, nullable=False) + +class Privilege_v0(declarative_base()): + __tablename__ = 'core__privileges' + id = Column(Integer, nullable=False, primary_key=True, unique=True) + privilege_name = Column(Unicode, nullable=False, unique=True) + +class PrivilegeUserAssociation_v0(declarative_base()): + __tablename__ = 'core__privileges_users' + group_id = Column( + 'core__privilege_id', + Integer, + ForeignKey(User.id), + primary_key=True) + user_id = Column( + 'core__user_id', + Integer, + ForeignKey(Privilege.id), + primary_key=True) + +@RegisterMigration(15, MIGRATIONS) +def create_moderation_tables(db): + ReportBase_v0.__table__.create(db.bind) + CommentReport_v0.__table__.create(db.bind) + MediaReport_v0.__table__.create(db.bind) + ArchivedReport_v0.__table__.create(db.bind) + UserBan_v0.__table__.create(db.bind) + Privilege_v0.__table__.create(db.bind) + PrivilegeUserAssociation_v0.__table__.create(db.bind) + db.commit() + + diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py index 25b4fa8f..62c5a5d5 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -649,6 +649,10 @@ class ProcessingNotification(Notification): 'polymorphic_identity': 'processing_notification' } +with_polymorphic( + Notification, + [ProcessingNotification, CommentNotification]) + class ReportBase(Base): """ This is the basic report table which the other reports are based off of. @@ -828,16 +832,13 @@ class PrivilegeUserAssociation(Base): ForeignKey(Privilege.id), primary_key=True) -with_polymorphic( - Notification, - [ProcessingNotification, CommentNotification]) - MODELS = [ User, MediaEntry, Tag, MediaTag, MediaComment, Collection, CollectionItem, MediaFile, FileKeynames, MediaAttachmentFile, ProcessingMetaData, - Notification, CommentNotification, ProcessingNotification, + Notification, CommentNotification, ProcessingNotification, Client, CommentSubscription, ReportBase, CommentReport, MediaReport, UserBan, - Privilege, PrivilegeUserAssociation, ArchivedReport, ArchivedReport] + Privilege, PrivilegeUserAssociation, ArchivedReport, + RequestToken, AccessToken, NonceTimestamp] """ Foundations are the default rows that are created immediately after the tables |