spec/dummy/db/schema.rb in prosperity-0.0.8 vs spec/dummy/db/schema.rb in prosperity-0.0.9

- old
+ new

@@ -9,11 +9,11 @@ # from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20140516222642) do +ActiveRecord::Schema.define(version: 20140606175543) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" create_table "prosperity_dashboard_graphs", force: true do |t| @@ -48,9 +48,16 @@ t.string "title", null: false t.string "period", null: false t.datetime "created_at" t.datetime "updated_at" t.string "graph_type", null: false + end + + create_table "transactions", force: true do |t| + t.datetime "date", null: false + t.integer "amount_in_cents", null: false + t.datetime "created_at" + t.datetime "updated_at" end create_table "users", force: true do |t| t.string "email" t.string "name"