Adding a comment explaining what vR1 means.

This commit sponsored by Kim Jin-hoon.  Thank you!
This commit is contained in:
Christopher Allan Webber 2013-10-08 10:33:00 -05:00
parent 63866d806a
commit 8ac7859369

View File

@ -578,6 +578,10 @@ PRIVILEGE_FOUNDATIONS_v0 = [{'privilege_name':u'admin'},
{'privilege_name':u'active'}]
# vR1 stands for "version Rename 1". This only exists because we need
# to deal with dropping some booleans and it's otherwise impossible
# with sqlite.
class User_vR1(declarative_base()):
__tablename__ = 'rename__users'
id = Column(Integer, primary_key=True)