aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/test/dummy/db/migrate/20190305172303_create_pages.rb
blob: 3a71e55d94a3b27e934329244b4e7798e0ffc78f (plain) (blame)
1
2
3
4
5
6
7
8
9
class CreatePages < ActiveRecord::Migration[6.0]
  def change
    create_table :pages do |t|
      t.string :title

      t.timestamps
    end
  end
end