screwdriver-data-schema 25.11.2 → 25.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,8 +9,7 @@ module.exports = {
9
9
  // eslint-disable-next-line no-unused-vars
10
10
  up: async (queryInterface, Sequelize) => {
11
11
  await queryInterface.sequelize.transaction(async transaction => {
12
- await queryInterface.removeIndex(table, {
13
- name: `${table}_pipeline_id_create_time`,
12
+ await queryInterface.removeIndex(table, `${table}_pipeline_id_create_time`, {
14
13
  transaction
15
14
  });
16
15
  });
package/models/event.js CHANGED
@@ -162,7 +162,8 @@ module.exports = {
162
162
  'prNum',
163
163
  'creator',
164
164
  'baseBranch',
165
- 'parentBuilds'
165
+ 'parentBuilds',
166
+ 'sha'
166
167
  ]
167
168
  )
168
169
  ).label('Create Event'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-data-schema",
3
- "version": "25.11.2",
3
+ "version": "25.12.0",
4
4
  "description": "Internal Data Schema of Screwdriver",
5
5
  "main": "index.js",
6
6
  "scripts": {