floor
floor copied to clipboard
how to truncate table?
how to delete all data in a table
@SteveCruise
To delete all data from the table you need to create a next Query request:
@Query('DELETE FROM task')
Future<void> clearTable();
But note that Query actions doesn't trigger a change update.
Thank you!