flutter-freaccess-hub/lib/features/storage/constants/profile_constants.dart

14 lines
339 B
Dart

const String tableKeychain = 'keychain';
String get createKeychainTable => '''
CREATE TABLE IF NOT EXISTS $tableKeychain (
key TEXT UNIQUE,
value TEXT,
type TEXT,
updateAt TEXT,
resolvedAt TEXT,
createdAt TEXT
);
''';
String get deleteKeychainTable => 'DROP TABLE IF EXISTS $tableKeychain;';