trestle 0.10.0 trestle: ^0.10.0 copied to clipboard
Database gateway and ORM
0.10.0 #
Additions
- Added back SQLite support via the newly updated
sqlite
package.
final gateway = new Gateway(
// driver: new SqliteDriver.inMemory()
driver: new SqliteDriver('path/to/database.db')
)
0.9.0 #
Bug fixes
- The
.unique()
constraint on a schema column now correctly outputsUNIQUE
inSQLDriver
.
0.7.0 #
Breaking!
- Removing SQLite implementation because it is simply not working well. Apps depending on the
SQLite driver must stay
<0.7.0
.
Additions
- Added a JSON data type (#5)