mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-17 00:45:12 +00:00
8 lines
170 B
Ruby
8 lines
170 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class DropCompletionPromptValue < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
remove_column :completion_prompts, :value, :text
|
||
|
end
|
||
|
end
|