Skip to content

Commit

Permalink
fix(sql): Add is_deleted_idx
Browse files Browse the repository at this point in the history
  • Loading branch information
ajordens committed Jul 8, 2019
1 parent b4e6f5b commit 1a5f514
Showing 1 changed file with 105 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
databaseChangeLog:
- changeSet:
id: create-indexes
author: ajordens
changes:
- createIndex:
indexName: is_deleted_idx
tableName: applications
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: application_permissions
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: deliveries
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: entity_tags
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: notifications
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: pipeline_strategies
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: pipeline_templates
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: pipelines
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: projects
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: service_accounts
columns:
- column:
name: is_deleted
- createIndex:
indexName: is_deleted_idx
tableName: snapshots
columns:
- column:
name: is_deleted
rollback:
- dropIndex:
indexName: is_deleted_idx
tableName: applications
- dropIndex:
indexName: is_deleted_idx
tableName: application_permissions
- dropIndex:
indexName: is_deleted_idx
tableName: deliveries
- dropIndex:
indexName: is_deleted_idx
tableName: entity_tags
- dropIndex:
indexName: is_deleted_idx
tableName: notifications
- dropIndex:
indexName: is_deleted_idx
tableName: pipeline_strategies
- dropIndex:
indexName: is_deleted_idx
tableName: pipeline_templates
- dropIndex:
indexName: is_deleted_idx
tableName: pipelines
- dropIndex:
indexName: is_deleted_idx
tableName: projects
- dropIndex:
indexName: is_deleted_idx
tableName: service_accounts
- dropIndex:
indexName: is_deleted_idx
tableName: snapshots

0 comments on commit 1a5f514

Please sign in to comment.