Fix inconsistency in documentation

This commit is contained in:
Simon Binder 2019-06-16 09:52:01 +02:00
parent acbcc6bb58
commit 2e06ab763a
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ part 'filename.g.dart';
// be represented by a class called "Todo".
class Todos extends Table {
IntColumn get id => integer().autoIncrement()();
TextColumn get title => text().withLength(min: 6, max: 10)();
TextColumn get title => text().withLength(min: 6, max: 32)();
TextColumn get content => text().named('body')();
IntColumn get category => integer().nullable()();
}