al13ntown/db/migrate/20260824114813_add_post_id_to_posts.rb

6 lines
125 B
Ruby
Raw Permalink Normal View History

2026-08-24 20:12:41 +00:00
class AddPostIdToPosts < ActiveRecord::Migration[8.1]
def change
add_column :posts, :post_id, :integer
end
end