socialforge/db/migrate/20141013023400_create_web_f...

12 lines
232 B
Ruby

class CreateWebFooterCompanies < ActiveRecord::Migration
def change
create_table :web_footer_companies do |t|
t.string :name
t.string :logo_size
t.string :url
t.timestamps
end
end
end