platform/packages/orm/angel_migration_runner
2024-07-20 15:37:25 +08:00
..
example Updated angel3 migration 2024-07-20 10:23:45 +08:00
lib Fixed MySQL migration 2024-07-20 15:37:25 +08:00
test Fixed MySQL migration 2024-07-20 15:37:25 +08:00
.gitignore Update authors and licence 2021-05-15 21:37:00 +08:00
analysis_options.yaml Updated linter 2021-12-20 12:25:43 +08:00
AUTHORS.md Update authors and licence 2021-05-15 21:37:00 +08:00
CHANGELOG.md Fixed MySQL migration 2024-07-20 15:37:25 +08:00
LICENSE Updated linter 2021-12-20 12:25:43 +08:00
melos_angel3_migration_runner.iml Added melos 2022-03-19 09:37:28 +08:00
pubspec.yaml Updated Angel3 migration 2024-07-19 07:43:29 +08:00
README.md Updated Angel3 migration 2024-07-19 07:43:29 +08:00

Angel3 Migration Runner

Pub Version (including pre-releases) Null Safety Discord License

This package contains the implementation of the database migration for the following databases. It is designed to work with Angel3 ORM.

  • PostgreSQL 10.x or greater
  • MariaDB 10.2.x or greater
  • MySQL 8.x or greater

Usage

  • Use PostgresMigrationRunner to perform database migration for PostgreSQL.

  • Use MySqlMigrationRunner to perform database migration for MySQL and MariaDB. This runner is using mysql_client driver.

  • Use MariaDbMigrationRunner to perform database migration for MariaDB. This runner is using mysql1 driver.

Supported Operations

  • reset - Clear out all records in the migrations table and drop all the ORM related tables.
  • up - Generate all the tables based on the ORM models.
  • refresh - Run reset follow by up

To do

  • Update existing tables
  • Reverse engineer tables into models