- Allow to define a link (text and url) on budget form for render on the budget header. - Improve styles Co-authored-by: Senén Rodero Rodríguez <senenrodero@gmail.com>
7 lines
192 B
Ruby
7 lines
192 B
Ruby
class AddMainLinkToBudgets < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :budgets, :main_link_url, :string
|
|
add_column :budget_translations, :main_link_text, :string
|
|
end
|
|
end
|