osem-fcy/db/migrate/20170529215453_create_organizations.rb
2017-06-12 19:43:44 +05:30

9 lines
206 B
Ruby

class CreateOrganizations < ActiveRecord::Migration
def change
create_table :organizations do |t|
t.string :name, null: false
t.text :description
t.string :picture
end
end
end