osem-fcy/db/migrate/20170529215453_create_organizations.rb

11 lines
237 B
Ruby

# frozen_string_literal: true
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