Update advanced_dart_tables.md

This commit is contained in:
Filip Petrovic 2021-05-24 13:29:07 -07:00 committed by GitHub
parent 893b95e7e9
commit 2a8b0fff26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ an exception will be thrown. When using sql, moor also warns about that at compi
If you do want to make a column nullable, just use `nullable()`:
```dart
class Items {
IntColumn get category => integer().nullable();
IntColumn get category => integer().nullable()();
// ...
}
```