Add sqlite3 to dialectByName

pull/2/head
John K. Luebs 2014-02-23 20:32:37 -05:00
parent eac4a3744d
commit b333124f96
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,8 @@ func dialectByName(d string) SqlDialect {
return &PostgresDialect{}
case "mysql":
return &MySqlDialect{}
case "sqlite3":
return &Sqlite3Dialect{}
}
return nil