Project

General

Profile

Download (266 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateProxies < ActiveRecord::Migration[4.2]
def up
create_table :smart_proxies do |t|
t.string :name, :limit => 255
t.string :url, :limit => 255
t.timestamps null: true
end
end

def down
drop_table :smart_proxies
end
end
(62-62/409)