diff --git a/ghost/core/core/server/models/base/plugins/user-type.js b/ghost/core/core/server/models/base/plugins/user-type.js index 03a6e40ba4..818c865a4d 100644 --- a/ghost/core/core/server/models/base/plugins/user-type.js +++ b/ghost/core/core/server/models/base/plugins/user-type.js @@ -39,13 +39,11 @@ module.exports = function (Bookshelf) { /** * @NOTE: * - * This is a dirty hotfix for v0.1 only. - * The `x_by` columns are getting deprecated soon (https://github.com/TryGhost/Ghost/issues/10286). + * This is a dirty fix until we get rid of all the x_by columns + * @deprecated x_by columns are deprecated as of v1.0 - instead we should use the actions table + * see https://github.com/TryGhost/Ghost/issues/10286. * - * We return the owner ID '1' in case an integration updates or creates - * resources. v0.1 will continue to use the `x_by` columns. v0.1 does not support integrations. - * API v2 will introduce a new feature to solve inserting/updating resources - * from users or integrations. API v2 won't expose `x_by` columns anymore. + * We return the owner ID '1' in case an integration updates or creates resources. * * --- *