- extended field width of phone, fax and mobile fields to 32
git-svn-id: file:///home/www/usr01/svn/gnuviechadmin/gnuviech.info/gnuviechadmin/trunk@217 a67ec6bc-e5d5-0310-a910-815c51eb3124
This commit is contained in:
parent
5b7a1d990d
commit
58125cdf29
1 changed files with 3 additions and 3 deletions
|
@ -33,9 +33,9 @@ client_table = Table('clients', meta,
|
|||
Column('zip', String(7), nullable=False),
|
||||
Column('city', String(64), nullable=False),
|
||||
Column('country', String(5), nullable=False),
|
||||
Column('phone', String(20), nullable=False),
|
||||
Column('mobile', String(20)),
|
||||
Column('fax', String(20)),
|
||||
Column('phone', String(32), nullable=False),
|
||||
Column('mobile', String(32)),
|
||||
Column('fax', String(32)),
|
||||
Column('email', String(64), unique=True, nullable=False))
|
||||
client_table.create(checkfirst=True)
|
||||
|
||||
|
|
Loading…
Reference in a new issue