.seen and .tell: resize the username and chan columns to match max lengths on synirc.

This commit is contained in:
Chris Skalenda 2009-07-05 10:54:20 -05:00
parent 92b00e7cad
commit e6545f8ce7
2 changed files with 6 additions and 6 deletions

View File

@ -70,8 +70,8 @@ def dbconnect(db):
if(results[0] == 0):
conn.execute("create table if not exists "+ \
"seen(name varchar(50) not null, date datetime not null, "+ \
"quote varchar(250) not null, chan varchar(50) not null, "+ \
"seen(name varchar(30) not null, date datetime not null, "+ \
"quote varchar(250) not null, chan varchar(32) not null, "+ \
"primary key(name, chan));")
conn.commit()

View File

@ -83,16 +83,16 @@ def dbconnect(db):
if results[0] == 0:
conn.execute("create table if not exists "+ \
"tell(id integer primary key autoincrement, name varchar(50) not null, "+ \
"user_from varchar(50) not null, quote varchar(250) not null, "+ \
"chan varchar(50) not null, date datetime not null);")
"tell(id integer primary key autoincrement, name varchar(30) not null, "+ \
"user_from varchar(30) not null, quote varchar(250) not null, "+ \
"chan varchar(32) not null, date datetime not null);")
conn.commit()
results = conn.execute("select count(*) from sqlite_master where name=?", ("tell_probation" ,)).fetchone()
if results[0] == 0:
conn.execute("create table if not exists "+ \
"tell_probation(name varchar(50), chan varchar(50),"+ \
"tell_probation(name varchar(30), chan varchar(32),"+ \
"primary key(name, chan));")
conn.commit()