tableName property
The sql table name to be used. By default, drift will use the snake_case
representation of your class name as the sql table name. For instance, a
Table
class named LocalSettings
will be called local_settings
by
default.
You can change that behavior by overriding this method to use a custom
name. Please note that you must directly return a string literal by using
a getter. For instance @override String get tableName => 'my_table';
is
valid, whereas @override final String tableName = 'my_table';
or
@override String get tableName => createMyTableName();
is not.
Implementation
@visibleForOverriding
String? get tableName => null;