needle_orm_migration_runner 0.1.1
needle_orm_migration_runner: ^0.1.1 copied to clipboard
ORM migration for Needle ORM, and ORM framework inspired by Ebean.io (an excellent ORM from Java/Kotlin world).
0.1.1 #
- FEAT: bump version: 0.1.0.
- FEAT: rename migration Table to MigrationTable.
0.0.6 #
- FEAT: support blob (List
7.0.0 #
- Require Dart >= 2.17
6.1.0 #
- Fixed issue #70. Incorrectly generated SQL for
defaultsTo('Default Value') - Mapped timestamp to datetime for MySQL and MariaDB
- Fixed
MariaDbMigrationRunnerto work with MariaDB - Fixed
MySqlMigrationRunnerto work with MySQL and MariaDB
6.0.1 #
- Added
MariaDbMigrationRunnerto support MariaDB migration withmysql1driver - Updated
MySqlMigrationRunnerto support MySQL migration withmysql_clientdriver
6.0.0 #
- Require Dart >= 2.16
- Updated to use
mysql_clientpackage
5.0.0 #
- Skipped release
4.1.2 #
- Updated README
4.1.1 #
- Updated README
4.1.0 #
- Added support for
MySQLandMariaDBdatabase
4.0.2 #
- Updated README
4.0.1 #
- Updated linter to
package:lints
4.0.0 #
- Fixed NNBD issues
4.0.0-beta.4 #
- Logged exception of the db query execution to console
- Added transaction to data insertion
- Fixed SQL column generator to remove size from none character based data type
4.0.0-beta.3 #
- Updated README
- Fixed NNBD issue
- Default database column to
varchartype - Default the
varcharcolumn size to 256
4.0.0-beta.2 #
- Resolved static analysis warnings
4.0.0-beta.1 #
- Migrated to support Dart >= 2.12 NNBD
3.0.0 #
- Migrated to work with Dart >= 2.12 Non NNBD
2.0.0 #
- Bump to
2.0.0.
2.0.0-beta.1 #
- Make
resetreverse migrations.
2.0.0-beta.0 #
- Make
resetreverse migrations.
2.0.0-alpha.5 #
- Support default values for columns.
2.0.0-alpha.4 #
- Include the names of migration classes when running.
2.0.0-alpha.3 #
- Run migrations in reverse on
rollback.
2.0.0-alpha.2 #
- Run migrations in reverse on
reset.
2.0.0-alpha.1 #
- Cast Iterables via
.cast(), rather thanas.
2.0.0-alpha #
- Dart 2 update.
1.0.0-alpha+5 #
Schema##drop now has a named cascade parameter, of type bool.
1.0.0-alpha+1 #
- You can now pass a
connectedparameter.