mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 05:39:09 +08:00
6 lines
170 B
Ruby
6 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
|