mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-07 00:01:12 -04:00
send a NASA probe to the buildbot
This commit is contained in:
@@ -490,7 +490,10 @@ class SQLiteDialect(default.DefaultDialect):
|
||||
|
||||
colargs = []
|
||||
if has_default:
|
||||
colargs.append(DefaultClause(sql.text(default)))
|
||||
try:
|
||||
colargs.append(DefaultClause(sql.text(default)))
|
||||
except:
|
||||
colargs.append(DefaultClause(sql.text("what the heck is this: %r" % default)))
|
||||
table.append_column(schema.Column(name, coltype, primary_key = primary_key, nullable = nullable, *colargs))
|
||||
|
||||
if not found_table:
|
||||
|
||||
Reference in New Issue
Block a user