docbrown/db/migrate/20190409123750_create_credits.rb
Ben Halpern 78138532c8
Classified Listings (#2545)
* Initial classified listings work

* More work on tags

* Additional work finalizing stripe and getting the listings page along

* Finalize-ish listings 🤞
2019-04-24 16:17:01 -04:00

12 lines
303 B
Ruby

class CreateCredits < ActiveRecord::Migration[5.1]
def change
create_table :credits do |t|
t.bigint :user_id
t.bigint :organization_id
t.float :cost, default: 0.0
t.string :spent_on
t.boolean :spent, default: false
t.timestamps
end
end
end