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;';