gitlab-org--gitlab-foss/db/migrate/20181019032400_add_shards_t...

12 lines
225 B
Ruby

# 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 }
end
end
end