mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
90a4d369db
closes https://github.com/TryGhost/Team/issues/1024 Our importer would set the default value of all posts_meta keys to `null`. This is an invalid value for the `email_only` key which only accepts booleans. Since we are already looping over the schema to create the default values, we can use the `defaultTo` property in the schema to use the intended default, and fall back to `null` if it doesn't exist. We've used the `Reflect.has` function to determine if the `defaultTo` key exists, as opposed to a truthy check, because it's possible that a falsy value (e.g. false, in the case of email_only) can be used as the default. |
||
---|---|---|
.. | ||
db | ||
exporter | ||
importer | ||
migrations | ||
schema |