From 206fce89c7424c8c8944021cc93c86c41ee993f3 Mon Sep 17 00:00:00 2001 From: thosakwe Date: Sat, 17 Jun 2017 12:53:32 -0400 Subject: [PATCH] pubspec --- README.md | 6 ++++++ pubspec.yaml | 2 +- test/models/car.dart | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 171c3aa9..f4aaf07b 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,12 @@ Source-generated ORM for use with the Angel framework. Documentation is coming s This ORM can work with virtually any database, thanks to the functionality exposed by `package:query_builder`. +Currently supported: +* PostgreSQL +* MongoDB (planned) +* RethinkDB (planned) +* In-Memory (planned) + Your model, courtesy of `package:angel_serialize`: ```dart diff --git a/pubspec.yaml b/pubspec.yaml index 6c50b803..d7f72f44 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -8,7 +8,6 @@ dependencies: code_builder: ^1.0.0 id: ^1.0.0 inflection: ^0.4.1 - postgres: ">=0.9.5 <1.0.0" query_builder_sql: ^1.0.0-alpha recase: ^1.0.0 source_gen: ^0.5.8 @@ -19,4 +18,5 @@ dev_dependencies: angel_test: ">=1.0.0 <2.0.0" build_runner: ^0.3.0 http: ">= 0.11.3 < 0.12.0" + postgres: ">=0.9.5 <1.0.0" test: ">= 0.12.13 < 0.13.0" \ No newline at end of file diff --git a/test/models/car.dart b/test/models/car.dart index 8689b652..a367272d 100644 --- a/test/models/car.dart +++ b/test/models/car.dart @@ -3,7 +3,7 @@ library angel_orm.test.models.car; import 'package:angel_framework/common.dart'; import 'package:angel_orm/angel_orm.dart' as orm; import 'package:angel_serialize/angel_serialize.dart'; -import 'car.postgres.g.dart'; +import 'car.orm.g.dart'; part 'car.g.dart'; @serializable