added contact name to the vendor table

This commit is contained in:
David Lenwell 2013-10-31 02:23:44 -07:00
parent f4557fc5d4
commit cc969e8ccc
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -46,3 +46,5 @@ refstack/client/.testrepository/format
refstack/client/.testrepository/next-stream
refstack/client/.smbdeleteAAA06c94.4
scripts/members_sponsors_20131030.csv

View File

@ -73,7 +73,7 @@ class Vendor(Base):
id = Column(Integer, primary_key=True)
vendor_name = Column(String(80), unique=True)
contact_email = Column(String(120), unique=True)
contact_name = Column(String(120), unique=False)
def __str__(self):
return self.vendor_name