Files
sure/db/migrate/20251121120028_add_credentials_to_lunchflow_items.rb
soky srm be0b20dfd9 Lunchflow settings family (#363)
* Move provider config to family

* remove global settings

* Remove turbo auto  submit

* Fix flash location

* Fix mssing syncer for lunchflow

* Update schema.rb

* FIX tests and encryption config

* FIX make rabbit happy

* FIX run migration in SQL

* FIX turbo frame modal

* Branding fixes

* FIX rabbit

* OCD with product names

* More OCD

* No other console.log|warn in codebase

---------

Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
2025-11-22 02:14:29 +01:00

7 lines
192 B
Ruby

class AddCredentialsToLunchflowItems < ActiveRecord::Migration[7.2]
def change
add_column :lunchflow_items, :api_key, :text
add_column :lunchflow_items, :base_url, :string
end
end