summaryrefslogtreecommitdiff
path: root/db/migrate/20181019032400_add_shards_table.rb
blob: 713039c1a15ef52019192084b80d352a2cdb10fb (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddShardsTable < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    create_table :shards do |t|
      t.string :name, null: false, index: { unique: true } # rubocop:disable Migration/PreventStrings
    end
  end
end