discourse/db/migrate/20240204204532_add_user_to_permalink.rb

8 lines
157 B
Ruby
Raw Permalink Normal View History

2024-02-05 10:31:31 -06:00
# frozen_string_literal: true
class AddUserToPermalink < ActiveRecord::Migration[7.0]
def change
add_column :permalinks, :user_id, :integer
end
end