From f1f66326f6300ed1821c25831e7d82cc53aab391 Mon Sep 17 00:00:00 2001 From: Dominic Date: Mon, 23 Dec 2024 13:36:05 +0200 Subject: [PATCH] chore: update insertOnly description --- packages/powersync/lib/src/schema.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/powersync/lib/src/schema.dart b/packages/powersync/lib/src/schema.dart index 92abee97..bb6af367 100644 --- a/packages/powersync/lib/src/schema.dart +++ b/packages/powersync/lib/src/schema.dart @@ -73,9 +73,12 @@ class Table { /// Create a table that only supports inserts. /// - /// This table records INSERT statements, but does not persist data locally. + /// This table supports INSERT statements, operations are recorded internally + /// and are cleared once handled in the `PowerSyncBackendConnector.uploadData` + /// method. /// /// SELECT queries on the table will always return 0 rows. + /// const Table.insertOnly(this.name, this.columns, {String? viewName}) : localOnly = false, insertOnly = true,