class CreateFeedbackConfig

Public Instance Methods

change() click to toggle source
# File lib/nexmo_developer/db/migrate/20201016102902_create_feedback_config.rb, line 2
def change
  create_table :feedback_configs, id: :uuid do |t|
    t.string :title
    t.jsonb :paths

    t.timestamps
  end
end