Re-run generator on benchmark project

This commit is contained in:
Simon Binder 2020-02-19 19:32:00 +01:00
parent 36bf6524df
commit 2b780492d3
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 2 additions and 2 deletions

View File

@ -155,10 +155,10 @@ class $KeyValuesTable extends KeyValues
Map<String, Variable> entityToSql(KeyValuesCompanion d) {
final map = <String, Variable>{};
if (d.key.present) {
map['key'] = Variable<String, StringType>(d.key.value);
map['key'] = Variable<String>(d.key.value);
}
if (d.value.present) {
map['value'] = Variable<String, StringType>(d.value.value);
map['value'] = Variable<String>(d.value.value);
}
return map;
}