15 lines
347 B
Ruby
15 lines
347 B
Ruby
|
|
class CreateOrganizations < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
create_table :organizations do |t|
|
||
|
|
t.string :name
|
||
|
|
t.string :website_url
|
||
|
|
t.text :description
|
||
|
|
t.string :logo_file_name
|
||
|
|
t.string :logo_content_type
|
||
|
|
t.integer :logo_file_size
|
||
|
|
t.datetime :logo_updated_at
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|