Files
discourse/db/migrate/20180323161659_add_id_to_shared_drafts.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
160 B
Ruby
Raw Normal View History

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