|
1
|
class CreateComments < ActiveRecord::Migration[8.1] |
|
2
|
def change |
|
3
|
create_table :comments do |t| |
|
4
|
t.references :commentable, polymorphic: true, null: false |
|
5
|
t.references :user, null: false, foreign_key: true # author |
|
6
|
t.text :body, null: false |
|
7
|
|
|
8
|
t.timestamps |
|
9
|
end |
|
10
|
end |
|
11
|
end |