discourse/db/migrate/20141120035016_add_allowed_ips_to_api_keys.rb

8 lines
159 B
Ruby
Raw Normal View History

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