Sha256: b3f1f7b5bb52ab9524432a7e0ca41561742049914a6391dbc0a861a5b470d712

Contents?: true

Size: 313 Bytes

Versions: 3

Compression:

Stored size: 313 Bytes

Contents

Sequel.migration do
  up do
    alter_table(:pacticipants) do
      add_index [:name], name: 'ndx_ppt_name' # Not sure if this is useful give we use LIKE not EQ
    end

    alter_table(:tags) do
      add_index [:name], name: 'ndx_tag_name' # Not sure if this is useful give we use LIKE not EQ
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pact_broker-2.0.5 db/migrations/35_create_index_on_names.rb
pact_broker-2.0.4 db/migrations/35_create_index_on_names.rb
pact_broker-2.0.3 db/migrations/35_create_index_on_names.rb