mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
6 lines
160 B
Ruby
6 lines
160 B
Ruby
|
class AddValuationKind < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
add_column :valuations, :kind, :string, default: "reconciliation", null: false
|
||
|
end
|
||
|
end
|