Skip to content

Commit

Permalink
Add comments column to recurring donations table
Browse files Browse the repository at this point in the history
  • Loading branch information
winsonwan committed Feb 29, 2024
1 parent 84edcdd commit 0fdbfbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions db/migrate/20240229121243_create_recurring_donations.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ def change
t.belongs_to :account_code
t.belongs_to :customer
t.float "amount", default: 0.0
t.string "comments", limit: 255
t.timestamps null: false
end

Expand Down
1 change: 1 addition & 0 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@
t.integer "account_code_id"
t.integer "customer_id"
t.float "amount", default: 0.0
t.string "comments", limit: 255
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
Expand Down

0 comments on commit 0fdbfbb

Please sign in to comment.