2017-05-31 18:42:52 +05:30
|
|
|
class CreateOrganizations < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
create_table :organizations do |t|
|
2017-06-06 20:04:39 +05:30
|
|
|
t.string :name, null: false
|
2017-05-31 18:42:52 +05:30
|
|
|
t.text :description
|
|
|
|
|
t.string :picture
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|