$$VersionsTableTableManager constructor
$$VersionsTableTableManager( - _$CommonDatabase db,
- $VersionsTable table
)
Implementation
$$VersionsTableTableManager(_$CommonDatabase db, $VersionsTable table)
: super(TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$VersionsTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$VersionsTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$VersionsTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback: ({
Value<String> userId = const Value.absent(),
Value<String?> favoriteChatsListVersion = const Value.absent(),
Value<bool?> favoriteChatsSynchronized = const Value.absent(),
Value<String?> chatContactsListVersion = const Value.absent(),
Value<bool?> favoriteContactsSynchronized = const Value.absent(),
Value<bool?> contactsSynchronized = const Value.absent(),
Value<bool?> blocklistSynchronized = const Value.absent(),
Value<String?> sessionsListVersion = const Value.absent(),
Value<String?> blocklistVersion = const Value.absent(),
Value<int?> blocklistCount = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) =>
VersionsCompanion(
userId: userId,
favoriteChatsListVersion: favoriteChatsListVersion,
favoriteChatsSynchronized: favoriteChatsSynchronized,
chatContactsListVersion: chatContactsListVersion,
favoriteContactsSynchronized: favoriteContactsSynchronized,
contactsSynchronized: contactsSynchronized,
blocklistSynchronized: blocklistSynchronized,
sessionsListVersion: sessionsListVersion,
blocklistVersion: blocklistVersion,
blocklistCount: blocklistCount,
rowid: rowid,
),
createCompanionCallback: ({
required String userId,
Value<String?> favoriteChatsListVersion = const Value.absent(),
Value<bool?> favoriteChatsSynchronized = const Value.absent(),
Value<String?> chatContactsListVersion = const Value.absent(),
Value<bool?> favoriteContactsSynchronized = const Value.absent(),
Value<bool?> contactsSynchronized = const Value.absent(),
Value<bool?> blocklistSynchronized = const Value.absent(),
Value<String?> sessionsListVersion = const Value.absent(),
Value<String?> blocklistVersion = const Value.absent(),
Value<int?> blocklistCount = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) =>
VersionsCompanion.insert(
userId: userId,
favoriteChatsListVersion: favoriteChatsListVersion,
favoriteChatsSynchronized: favoriteChatsSynchronized,
chatContactsListVersion: chatContactsListVersion,
favoriteContactsSynchronized: favoriteContactsSynchronized,
contactsSynchronized: contactsSynchronized,
blocklistSynchronized: blocklistSynchronized,
sessionsListVersion: sessionsListVersion,
blocklistVersion: blocklistVersion,
blocklistCount: blocklistCount,
rowid: rowid,
),
withReferenceMapper: (p0) => p0
.map((e) => (e.readTable(table), BaseReferences(db, table, e)))
.toList(),
prefetchHooksCallback: null,
));