aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/test/dummy/db/migrate/20181003185713_create_people.rb
blob: 1d5922d389d9ba95e2389f7866ebb823b7be7e49 (plain) (blame)
1
2
3
4
5
6
7
8
9
class CreatePeople < ActiveRecord::Migration[5.2]
  def change
    create_table :people do |t|
      t.string :name

      t.timestamps
    end
  end
end