Add test case without any additional constraints

This commit is contained in:
Simon Binder 2019-07-30 10:33:32 +02:00
parent b1820ef5aa
commit 635b902352
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 3 additions and 4 deletions

View File

@ -269,7 +269,7 @@ class WithConstraint extends DataClass implements Insertable<WithConstraint> {
final String a;
final int b;
final double c;
WithConstraint({@required this.a, @required this.b, this.c});
WithConstraint({this.a, @required this.b, this.c});
factory WithConstraint.fromData(
Map<String, dynamic> data, GeneratedDatabase db,
{String prefix}) {
@ -354,8 +354,7 @@ class WithConstraints extends Table
GeneratedTextColumn _a;
GeneratedTextColumn get a => _a ??= _constructA();
GeneratedTextColumn _constructA() {
return GeneratedTextColumn('a', $tableName, false,
$customConstraints: 'NOT NULL');
return GeneratedTextColumn('a', $tableName, true, $customConstraints: '');
}
final VerificationMeta _bMeta = const VerificationMeta('b');

View File

@ -8,7 +8,7 @@ CREATE TABLE with_defaults (
)
CREATE TABLE with_constraints (
a TEXT NOT NULL,
a TEXT,
b INT NOT NULL,
c FLOAT(10, 2),