mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
8 lines
164 B
Ruby
8 lines
164 B
Ruby
class AddAllowedIpsToApiKeys < ActiveRecord::Migration[4.2]
|
|
def change
|
|
change_table :api_keys do |t|
|
|
t.inet :allowed_ips, array: true
|
|
end
|
|
end
|
|
end
|