discourse/db/migrate/20141120035016_add_allowed_...

10 lines
195 B
Ruby

# frozen_string_literal: true
class AddAllowedIpsToApiKeys < ActiveRecord::Migration[4.2]
def change
change_table :api_keys do |t|
t.inet :allowed_ips, array: true
end
end
end