Files
sanasto-wiki/db/migrate/20260122123828_create_comments.rb

12 lines
290 B
Ruby

class CreateComments < ActiveRecord::Migration[8.1]
def change
create_table :comments do |t|
t.references :user, null: false, foreign_key: true
t.references :commentable, polymorphic: true, null: false
t.text :body, null: false
t.timestamps
end
end
end