chatwoot-develop/db/migrate/20260119150720_create_frequent_questions.rb
2026-01-19 19:26:23 -03:00

14 lines
329 B
Ruby

class CreateFrequentQuestions < ActiveRecord::Migration[7.1]
def change
create_table :frequent_questions do |t|
t.references :account, null: false, foreign_key: true
t.string :label
t.string :question_text
t.integer :occurrence_count
t.date :cluster_date
t.timestamps
end
end
end