compileTruncate method

  1. @override
String compileTruncate(
  1. String table
)
override

TRUNCATE resets sequences and is much faster than DELETE.

Implementation

@override
String compileTruncate(String table) =>
    'truncate ${wrapTable(table)} restart identity cascade';