discourse/db/migrate/20180125185717_add_locked_b...

8 lines
157 B
Ruby

# frozen_string_literal: true
class AddLockedByToPosts < ActiveRecord::Migration[5.1]
def change
add_column :posts, :locked_by_id, :integer
end
end