notificationIndexes constant
Implementation
static const List<String> notificationIndexes = [
'CREATE INDEX IF NOT EXISTS notifications_datetime ON notifications (notification_datetime);',
'CREATE INDEX IF NOT EXISTS notifications_status ON notifications (status);',
'CREATE INDEX IF NOT EXISTS notifications_expires_at ON notifications (expires_at) WHERE expires_at IS NOT NULL;',
];