flutter-freaccess-hub/lib/shared/constants/keychain_constants.dart

13 lines
330 B
Dart

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