0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

chore: whitelist add_on_sku_id (#6860)

chore: white list add_on_sku_id in compare db

white list add_on_sku_id in the compare db script
This commit is contained in:
simeng-li 2024-12-09 10:55:38 +08:00 committed by GitHub
parent ab82e83afb
commit d2fb597ef3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -277,7 +277,8 @@ const queryDatabaseData = async (database) => {
'updated_at',
'secret',
'db_user',
'db_user_password'
'db_user_password',
'add_on_sku_id'
);
return [table_name, data.sort(buildSortByKeys(Object.keys(data[0] ?? {})))];