6 lines
125 B
Ruby
6 lines
125 B
Ruby
|
|
class AddPostIdToPosts < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
add_column :posts, :post_id, :integer
|
||
|
|
end
|
||
|
|
end
|