discourse/db/migrate/20180323161659_add_id_to_sh...

8 lines
160 B
Ruby

# frozen_string_literal: true
class AddIdToSharedDrafts < ActiveRecord::Migration[5.1]
def change
add_column :shared_drafts, :id, :primary_key
end
end