class AddUserIdToAssistantThreads < ActiveRecord::Migration[7.0]
  def change
    add_column :assistant_threads, :user_id, :integer
    add_index :assistant_threads, :user_id
  end
end
