mirror of
https://github.com/we-promise/sure.git
synced 2026-04-18 11:34:13 +00:00
* Add trends, time series, seed data * Remove test data * Replace old view values with helpers * Fix tooltip bugs in D3 chart * Fix tests * Fix smoke test * Add CRUD actions for valuations * Scaffold out inline editing with Turbo * Refactor series logic * Scaffold out basic sync process for accounts * Fix tests
6 lines
137 B
Ruby
6 lines
137 B
Ruby
class AddStatusToAccount < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :accounts, :status, :string, default: "OK"
|
|
end
|
|
end
|