socialforge/db/migrate/20150305011023_create_organ...

11 lines
189 B
Ruby

class CreateOrganizations < ActiveRecord::Migration
def change
create_table :organizations do |t|
t.string :name
t.string :logo_link
t.timestamps
end
end
end