Files
grecia/db/migrate/20210423114500_create_ml_summary_comments.rb
2021-08-16 16:31:04 +02:00

12 lines
241 B
Ruby

class CreateMlSummaryComments < ActiveRecord::Migration[5.2]
def change
create_table :ml_summary_comments do |t|
t.integer :commentable_id
t.string :commentable_type
t.text :body
t.timestamps
end
end
end