aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20150124004310_create_notes.rb
blob: 41fe6cb807fff9008c8842f419991c467c353a6d (plain)
1
2
3
4
5
6
7
8
9
10
class CreateNotes < ActiveRecord::Migration
  def change
    create_table :notes do |t|
      t.string :title
      t.text :body

      t.timestamps null: false
    end
  end
end