al13ntown/db/migrate/20260824114813_add_post_id_to_posts.rb
2026-08-24 20:12:41 +00:00

5 lines
125 B
Ruby

class AddPostIdToPosts < ActiveRecord::Migration[8.1]
def change
add_column :posts, :post_id, :integer
end
end