Created
November 10, 2019 10:46
-
-
Save okomarov/b31922f8c80a9332917c7093a4421b22 to your computer and use it in GitHub Desktop.
viral queue referrals model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
referrals = db.Table( | |
'referral', | |
db.Column('referring', db.String(8), db.ForeignKey('waitlist.uuid')), | |
db.Column('referred', db.String(8), db.ForeignKey('waitlist.uuid')), | |
db.PrimaryKeyConstraint('referring', 'referred', name='referrals_pk') | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment