columnDefinitions property

Map<String, String> columnDefinitions
latefinal

Column definitions specific to the pivot relationship.

Implementations typically define the two foreign key columns required by the relationship.

Example:

@override
late final Map<String, String> columnDefinitions = {
  'user_id': 'INTEGER NOT NULL',
  'role_id': 'INTEGER NOT NULL',
};

Implementation

late final Map<String, String> columnDefinitions;