register( '2meet-mobile-bridge', array( 'table_name' => '2meet_refresh_tokens', 'primary_key' => 'id', 'post_type_link' => null, 'expected_columns' => array( 'id' => 'BIGINT', 'token_hash' => 'CHAR', 'user_id' => 'BIGINT', 'expires_at' => 'DATETIME', 'created_at' => 'DATETIME', 'revoked_at' => 'DATETIME', 'replaced_by' => 'CHAR', ), 'indexes' => array( 'token_hash' => array( 'token_hash' ), 'user_id' => array( 'user_id' ), 'expires_at' => array( 'expires_at' ), ), ) ); } }