aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20240224165311_create_comments.rb
blob: 49cb989f124b61ead602fead92477c41e310a381 (plain)
1
2
3
4
5
6
7
8
9
10
class CreateComments < ActiveRecord::Migration[7.1]
  def change
    create_table :comments do |t|
      t.references :thing, null: false, foreign_key: true
      t.text :content

      t.timestamps
    end
  end
end