8 lines
162 B
Ruby
8 lines
162 B
Ruby
class AddNameToBudgetPhases < ActiveRecord::Migration[5.2]
|
|
def change
|
|
change_table :budget_phase_translations do |t|
|
|
t.string :name
|
|
end
|
|
end
|
|
end
|