2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/db/migrate/20120703201312_add_incoming_link_count_to_posts.rb

5 lines
167 B
Ruby

class AddIncomingLinkCountToPosts < ActiveRecord::Migration[4.2]
def change
add_column :posts, :incoming_link_count, :integer, default: 0, null: false
end
end