aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/test/dummy/db/migrate/20190317200724_create_reviews.rb
blob: 96e0eab287dd4e1fee5b726eb2acdb3ff8fc4a56 (plain) (blame)
1
2
3
4
5
6
7
8
class CreateReviews < ActiveRecord::Migration[6.0]
  def change
    create_table :reviews do |t|
      t.belongs_to :message, null: false
      t.string :author_name, null: false
    end
  end
end