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

      t.timestamps
    end
  end
end