1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 05:25:24 +02:00
Maybe/db/migrate/20250724115507_create_family_exports.rb
Zach Gollwitzer 0329a5f211
Data exports (#2517)
* Import / export UI

* Data exports

* Lint fixes, brakeman update
2025-07-24 10:50:05 -04:00

10 lines
287 B
Ruby

class CreateFamilyExports < ActiveRecord::Migration[7.2]
def change
create_table :family_exports, id: :uuid do |t|
t.references :family, null: false, foreign_key: true, type: :uuid
t.string :status, default: "pending", null: false
t.timestamps
end
end
end