├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── publish_request.md │ └── update_module_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── src ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android │ ├── app │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── flutter │ │ │ └── plugins │ │ │ └── GeneratedPluginRegistrant.java │ └── local.properties ├── example │ └── example.dart ├── flutter ├── flutter_orm_m8.iml ├── lib │ ├── annotation │ │ ├── column_metadata.dart │ │ ├── composite_constraint.dart │ │ ├── data_column.dart │ │ ├── data_table.dart │ │ └── table_metadata.dart │ ├── base │ │ ├── base.dart │ │ ├── db_account_entity.dart │ │ ├── db_account_related_entity.dart │ │ ├── db_entity.dart │ │ └── db_open_entity.dart │ └── f_orm_m8.dart ├── mono_pkg.yaml ├── pubspec.lock ├── pubspec.yaml └── test │ ├── all_tests.dart │ ├── base_classes_test.dart │ ├── base_implementations │ ├── accountrelated │ │ ├── a01_entity.dart │ │ └── a02_entity.dart │ ├── independent │ │ ├── i01_entity.dart │ │ └── i02_entity.dart.n │ ├── open │ │ └── o01_entity.dart │ └── user_account.dart │ ├── data_column_test.dart │ └── data_table_test.dart └── tool ├── travis.sh └── travis_codecov.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/publish_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/.github/ISSUE_TEMPLATE/publish_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/update_module_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/.github/ISSUE_TEMPLATE/update_module_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/README.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/.metadata -------------------------------------------------------------------------------- /src/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/CHANGELOG.md -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/LICENSE -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/README.md -------------------------------------------------------------------------------- /src/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java -------------------------------------------------------------------------------- /src/android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/android/local.properties -------------------------------------------------------------------------------- /src/example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/example/example.dart -------------------------------------------------------------------------------- /src/flutter: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/flutter_orm_m8.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/flutter_orm_m8.iml -------------------------------------------------------------------------------- /src/lib/annotation/column_metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/annotation/column_metadata.dart -------------------------------------------------------------------------------- /src/lib/annotation/composite_constraint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/annotation/composite_constraint.dart -------------------------------------------------------------------------------- /src/lib/annotation/data_column.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/annotation/data_column.dart -------------------------------------------------------------------------------- /src/lib/annotation/data_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/annotation/data_table.dart -------------------------------------------------------------------------------- /src/lib/annotation/table_metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/annotation/table_metadata.dart -------------------------------------------------------------------------------- /src/lib/base/base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/base/base.dart -------------------------------------------------------------------------------- /src/lib/base/db_account_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/base/db_account_entity.dart -------------------------------------------------------------------------------- /src/lib/base/db_account_related_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/base/db_account_related_entity.dart -------------------------------------------------------------------------------- /src/lib/base/db_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/base/db_entity.dart -------------------------------------------------------------------------------- /src/lib/base/db_open_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/base/db_open_entity.dart -------------------------------------------------------------------------------- /src/lib/f_orm_m8.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/lib/f_orm_m8.dart -------------------------------------------------------------------------------- /src/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/mono_pkg.yaml -------------------------------------------------------------------------------- /src/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/pubspec.lock -------------------------------------------------------------------------------- /src/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/pubspec.yaml -------------------------------------------------------------------------------- /src/test/all_tests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/all_tests.dart -------------------------------------------------------------------------------- /src/test/base_classes_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/base_classes_test.dart -------------------------------------------------------------------------------- /src/test/base_implementations/accountrelated/a01_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/base_implementations/accountrelated/a01_entity.dart -------------------------------------------------------------------------------- /src/test/base_implementations/accountrelated/a02_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/base_implementations/accountrelated/a02_entity.dart -------------------------------------------------------------------------------- /src/test/base_implementations/independent/i01_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/base_implementations/independent/i01_entity.dart -------------------------------------------------------------------------------- /src/test/base_implementations/independent/i02_entity.dart.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/base_implementations/independent/i02_entity.dart.n -------------------------------------------------------------------------------- /src/test/base_implementations/open/o01_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/base_implementations/open/o01_entity.dart -------------------------------------------------------------------------------- /src/test/base_implementations/user_account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/base_implementations/user_account.dart -------------------------------------------------------------------------------- /src/test/data_column_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/data_column_test.dart -------------------------------------------------------------------------------- /src/test/data_table_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/src/test/data_table_test.dart -------------------------------------------------------------------------------- /tool/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/tool/travis.sh -------------------------------------------------------------------------------- /tool/travis_codecov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matei-tm/f-orm-m8/HEAD/tool/travis_codecov.sh --------------------------------------------------------------------------------