discourse/db/migrate/20240430051551_add_user_id_to_embeddable_hosts.rb
Jean 63b7a36fac
FEATURE: Extend embeddable hosts with Individual tags and author assignments (#26868)
* FEATURE: Extend embeddable hosts with tags and author assignments
2024-05-16 15:47:01 -04:00

7 lines
170 B
Ruby

# frozen_string_literal: true
class AddUserIdToEmbeddableHosts < ActiveRecord::Migration[7.0]
def change
add_column :embeddable_hosts, :user_id, :integer
end
end