discourse/db/migrate/20141120035016_add_allowed_ips_to_api_keys.rb
Sam 6bed4e1bf0 add allowed_ips to api_keys
update annotations
2014-11-20 14:53:15 +11:00

7 lines
159 B
Ruby

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