$$GeoLocationsTableTableManager constructor
Implementation
$$GeoLocationsTableTableManager(_$CommonDatabase db, $GeoLocationsTable table)
: super(TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$GeoLocationsTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$GeoLocationsTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$GeoLocationsTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback: ({
Value<String> ip = const Value.absent(),
Value<String> data = const Value.absent(),
Value<String?> language = const Value.absent(),
Value<PreciseDateTime> updatedAt = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) =>
GeoLocationsCompanion(
ip: ip,
data: data,
language: language,
updatedAt: updatedAt,
rowid: rowid,
),
createCompanionCallback: ({
required String ip,
required String data,
Value<String?> language = const Value.absent(),
required PreciseDateTime updatedAt,
Value<int> rowid = const Value.absent(),
}) =>
GeoLocationsCompanion.insert(
ip: ip,
data: data,
language: language,
updatedAt: updatedAt,
rowid: rowid,
),
withReferenceMapper: (p0) => p0
.map((e) => (e.readTable(table), BaseReferences(db, table, e)))
.toList(),
prefetchHooksCallback: null,
));