Merge branch 'master' into ssl-opt

This commit is contained in:
James Mason 2017-11-17 09:45:51 -08:00 committed by GitHub
commit fb4bafb296
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 5 deletions

View file

@ -22,7 +22,7 @@ before_script:
- cp config/database.yml.travis config/database.yml
- cp config/secrets.yml.example config/secrets.yml
- mysql -u root -e 'create database osem_test;'
- RAILS_ENV=test bundle exec rake db:migrate --trace
- RAILS_ENV=test bundle exec rake db:schema:load --trace
script:
- "./travis_script.sh $TEST_SUITE"
env:

View file

@ -555,7 +555,7 @@ GEM
chronic (>= 0.6.3)
xpath (2.0.0)
nokogiri (~> 1.3)
yajl-ruby (1.3.0)
yajl-ruby (1.3.1)
PLATFORMS
ruby
@ -668,4 +668,4 @@ DEPENDENCIES
whenever
BUNDLED WITH
1.15.4
1.16.0

View file

@ -505,7 +505,7 @@ ActiveRecord::Schema.define(version: 20170924190528) do
t.integer "user_id"
t.integer "payment_id"
t.integer "week"
t.float "amount_paid"
t.float "amount_paid", default: 0.0
end
create_table "ticket_scannings", force: :cascade do |t|
@ -579,7 +579,6 @@ ActiveRecord::Schema.define(version: 20170924190528) do
t.boolean "is_admin", default: false
t.string "username"
t.boolean "is_disabled", default: false
t.string "token"
end
add_index "users", ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true