* missing rails version 4.2 added to pre 5 migrations * updated carrierwave.rb and sitemap.rb with AWS_DEFAULT_REGION
11 lines
213 B
Ruby
11 lines
213 B
Ruby
class CreateNotes < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :notes do |t|
|
|
t.integer :user_id
|
|
t.text :content
|
|
t.string :reason
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|