openstax_exchange 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. data/.gitignore +15 -0
  2. data/.rspec +1 -0
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +8 -0
  6. data/Gemfile +4 -0
  7. data/MIT-LICENSE +3 -1
  8. data/README.md +58 -20
  9. data/Rakefile +5 -13
  10. data/exchange-client.gemspec +30 -0
  11. data/lib/openstax/exchange/client_instance.rb +23 -0
  12. data/lib/openstax/exchange/configuration.rb +12 -0
  13. data/lib/openstax/exchange/exceptions.rb +21 -0
  14. data/lib/openstax/exchange/exchange.rb +65 -0
  15. data/lib/openstax/exchange/fake_client/configuration.rb +13 -0
  16. data/lib/openstax/exchange/fake_client/fake_client.rb +71 -0
  17. data/lib/openstax/exchange/real_client/real_client.rb +76 -0
  18. data/lib/openstax/exchange/version.rb +1 -1
  19. data/lib/openstax_exchange.rb +8 -112
  20. data/spec/cassettes/OpenStax_Exchange/client_instance_configuration/can_be_configured_to_use_a_real_exchange_client.yml +48 -0
  21. data/spec/cassettes/OpenStax_Exchange/internal_client_instance/_client_defaults_to_a_real_exchange_client.yml +48 -0
  22. data/spec/cassettes/OpenStax_Exchange/internal_client_instance/_reset_causes_a_new_client_object_to_be_returned_by_client.yml +48 -0
  23. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_create_identifier/success/creates_a_distinct_identifer_per_invokation.yml +146 -0
  24. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_create_identifier/success/creates_and_returns_a_new_identifier.yml +97 -0
  25. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_initialize/invalid_platform_id/raises_an_exception.yml +52 -0
  26. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_initialize/invalid_platform_secret/raises_an_exception.yml +52 -0
  27. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_initialize/success/initializes_the_authentication_token.yml +48 -0
  28. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_record_multiple_choice_answer/duplicate_identifer_resource_trial_triplet/raises_an_exception.yml +194 -0
  29. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_record_multiple_choice_answer/invalid_resource_string/raises_an_exception.yml +145 -0
  30. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_record_multiple_choice_answer/success/allows_answers_with_distinct_identifiers_to_be_saved.yml +244 -0
  31. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_record_multiple_choice_answer/success/allows_answers_with_distinct_resources_to_be_saved.yml +195 -0
  32. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_record_multiple_choice_answer/success/allows_answers_with_distinct_trials_to_be_saved.yml +195 -0
  33. data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_record_multiple_choice_answer/success/creates_a_multiple_choice_answer_associated_with_the_given_identifier.yml +146 -0
  34. data/spec/lib/openstax/exchange/client_configuration_spec.rb +58 -0
  35. data/spec/lib/openstax/exchange/fake_client_v1_spec.rb +14 -0
  36. data/spec/lib/openstax/exchange/real_client_v1_spec.rb +9 -0
  37. data/spec/lib/openstax/exchange/shared_examples_for_exchange_client_v1.rb +208 -0
  38. data/spec/spec_helper.rb +52 -38
  39. metadata +97 -100
  40. checksums.yaml +0 -15
  41. data/spec/dummy/README.md +0 -1
  42. data/spec/dummy/Rakefile +0 -7
  43. data/spec/dummy/app/assets/javascripts/application.js +0 -15
  44. data/spec/dummy/app/assets/stylesheets/application.css +0 -13
  45. data/spec/dummy/app/controllers/api/dummy_controller.rb +0 -11
  46. data/spec/dummy/app/controllers/api/events_controller.rb +0 -7
  47. data/spec/dummy/app/controllers/application_controller.rb +0 -7
  48. data/spec/dummy/app/controllers/oauth_controller.rb +0 -8
  49. data/spec/dummy/app/helpers/application_helper.rb +0 -2
  50. data/spec/dummy/config.ru +0 -4
  51. data/spec/dummy/config/application.rb +0 -55
  52. data/spec/dummy/config/boot.rb +0 -10
  53. data/spec/dummy/config/database.yml +0 -25
  54. data/spec/dummy/config/environment.rb +0 -5
  55. data/spec/dummy/config/environments/development.rb +0 -29
  56. data/spec/dummy/config/environments/production.rb +0 -69
  57. data/spec/dummy/config/environments/test.rb +0 -35
  58. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  59. data/spec/dummy/config/initializers/inflections.rb +0 -15
  60. data/spec/dummy/config/initializers/mime_types.rb +0 -5
  61. data/spec/dummy/config/initializers/openstax_exchange.rb +0 -10
  62. data/spec/dummy/config/initializers/secret_token.rb +0 -7
  63. data/spec/dummy/config/initializers/session_store.rb +0 -8
  64. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
  65. data/spec/dummy/config/locales/en.yml +0 -5
  66. data/spec/dummy/config/routes.rb +0 -11
  67. data/spec/dummy/db/development.sqlite3 +0 -0
  68. data/spec/dummy/db/schema.rb +0 -16
  69. data/spec/dummy/db/test.sqlite3 +0 -0
  70. data/spec/dummy/log/development.log +0 -929
  71. data/spec/dummy/log/test.log +0 -46753
  72. data/spec/dummy/public/404.html +0 -26
  73. data/spec/dummy/public/422.html +0 -26
  74. data/spec/dummy/public/500.html +0 -25
  75. data/spec/dummy/public/favicon.ico +0 -0
  76. data/spec/dummy/script/rails +0 -6
  77. data/spec/lib/openstax_exchange_spec.rb +0 -23
@@ -1,10 +0,0 @@
1
- require 'rubygems'
2
- gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
-
4
- if File.exist?(gemfile)
5
- ENV['BUNDLE_GEMFILE'] = gemfile
6
- require 'bundler'
7
- Bundler.setup
8
- end
9
-
10
- $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -1,25 +0,0 @@
1
- # SQLite version 3.x
2
- # gem install sqlite3
3
- #
4
- # Ensure the SQLite 3 gem is defined in your Gemfile
5
- # gem 'sqlite3'
6
- development:
7
- adapter: sqlite3
8
- database: db/development.sqlite3
9
- pool: 5
10
- timeout: 5000
11
-
12
- # Warning: The database defined as "test" will be erased and
13
- # re-generated from your development database when you run "rake".
14
- # Do not set this db to the same as development or production.
15
- test:
16
- adapter: sqlite3
17
- database: db/test.sqlite3
18
- pool: 5
19
- timeout: 5000
20
-
21
- production:
22
- adapter: sqlite3
23
- database: db/production.sqlite3
24
- pool: 5
25
- timeout: 5000
@@ -1,5 +0,0 @@
1
- # Load the rails application
2
- require File.expand_path('../application', __FILE__)
3
-
4
- # Initialize the rails application
5
- Dummy::Application.initialize!
@@ -1,29 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # In the development environment your application's code is reloaded on
5
- # every request. This slows down response time but is perfect for development
6
- # since you don't have to restart the web server when you make code changes.
7
- config.cache_classes = false
8
-
9
- # Show full error reports and disable caching
10
- config.consider_all_requests_local = true
11
- config.action_controller.perform_caching = false
12
-
13
- # Don't care if the mailer can't send
14
- config.action_mailer.raise_delivery_errors = false
15
-
16
- # Print deprecation notices to the Rails logger
17
- config.active_support.deprecation = :log
18
-
19
- # Only use best-standards-support built into browsers
20
- config.action_dispatch.best_standards_support = :builtin
21
-
22
- # Do not compress assets
23
- config.assets.compress = false
24
-
25
- # Expands the lines which load the assets
26
- config.assets.debug = true
27
-
28
- config.eager_load = false
29
- end
@@ -1,69 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # Code is not reloaded between requests
5
- config.cache_classes = true
6
-
7
- # Full error reports are disabled and caching is turned on
8
- config.consider_all_requests_local = false
9
- config.action_controller.perform_caching = true
10
-
11
- # Disable Rails's static asset server (Apache or nginx will already do this)
12
- config.serve_static_assets = false
13
-
14
- # Compress JavaScripts and CSS
15
- config.assets.compress = true
16
-
17
- # Don't fallback to assets pipeline if a precompiled asset is missed
18
- config.assets.compile = false
19
-
20
- # Generate digests for assets URLs
21
- config.assets.digest = true
22
-
23
- # Defaults to nil and saved in location specified by config.assets.prefix
24
- # config.assets.manifest = YOUR_PATH
25
-
26
- # Specifies the header that your server uses for sending files
27
- # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
-
30
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
- # config.force_ssl = true
32
-
33
- # See everything in the log (default is :info)
34
- # config.log_level = :debug
35
-
36
- # Prepend all log lines with the following tags
37
- # config.log_tags = [ :subdomain, :uuid ]
38
-
39
- # Use a different logger for distributed setups
40
- # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
-
42
- # Use a different cache store in production
43
- # config.cache_store = :mem_cache_store
44
-
45
- # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
- # config.action_controller.asset_host = "http://assets.example.com"
47
-
48
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
- # config.assets.precompile += %w( search.js )
50
-
51
- # Disable delivery errors, bad email addresses will be ignored
52
- # config.action_mailer.raise_delivery_errors = false
53
-
54
- # Enable threaded mode
55
- # config.threadsafe!
56
-
57
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
- # the I18n.default_locale when a translation can not be found)
59
- config.i18n.fallbacks = true
60
-
61
- # Send deprecation notices to registered listeners
62
- config.active_support.deprecation = :notify
63
-
64
- # Log the query plan for queries taking more than this (works
65
- # with SQLite, MySQL, and PostgreSQL)
66
- # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
-
68
- config.eager_load = true
69
- end
@@ -1,35 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # The test environment is used exclusively to run your application's
5
- # test suite. You never need to work with it otherwise. Remember that
6
- # your test database is "scratch space" for the test suite and is wiped
7
- # and recreated between test runs. Don't rely on the data there!
8
- config.cache_classes = true
9
-
10
- # Configure static asset server for tests with Cache-Control for performance
11
- config.serve_static_assets = true
12
- config.static_cache_control = "public, max-age=3600"
13
-
14
- # Show full error reports and disable caching
15
- config.consider_all_requests_local = true
16
- config.action_controller.perform_caching = false
17
-
18
- # Raise exceptions instead of rendering exception templates
19
- config.action_dispatch.show_exceptions = false
20
-
21
- # Disable request forgery protection in test environment
22
- config.action_controller.allow_forgery_protection = false
23
-
24
- # Tell Action Mailer not to deliver emails to the real world.
25
- # The :test delivery method accumulates sent emails in the
26
- # ActionMailer::Base.deliveries array.
27
- config.action_mailer.delivery_method = :test
28
-
29
- # Print deprecation notices to the stderr
30
- config.active_support.deprecation = :stderr
31
-
32
- # Necessary because our folder structure does not match what Rails expects,
33
- # so the usual autoload doesn't work
34
- config.eager_load = false
35
- end
@@ -1,7 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
- # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
-
6
- # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
- # Rails.backtrace_cleaner.remove_silencers!
@@ -1,15 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new inflection rules using the following format
4
- # (all these examples are active by default):
5
- # ActiveSupport::Inflector.inflections do |inflect|
6
- # inflect.plural /^(ox)$/i, '\1en'
7
- # inflect.singular /^(ox)en/i, '\1'
8
- # inflect.irregular 'person', 'people'
9
- # inflect.uncountable %w( fish sheep )
10
- # end
11
- #
12
- # These inflection rules are supported but not enabled by default:
13
- # ActiveSupport::Inflector.inflections do |inflect|
14
- # inflect.acronym 'RESTful'
15
- # end
@@ -1,5 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new mime types for use in respond_to blocks:
4
- # Mime::Type.register "text/richtext", :rtf
5
- # Mime::Type.register_alias "text/html", :iphone
@@ -1,10 +0,0 @@
1
- require 'capybara'
2
-
3
- # Initializes a Capybara server running the Dummy app
4
- CAPYBARA_SERVER = Capybara::Server.new(Rails.application).boot
5
-
6
- OpenStax::Exchange.configure do |config|
7
- config.openstax_exchange_url = "http://localhost:#{CAPYBARA_SERVER.port}/"
8
- config.openstax_exchange_platform_id = 'secret'
9
- config.openstax_exchange_platform_secret = 'secret'
10
- end
@@ -1,7 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
- # Make sure the secret is at least 30 characters and all random,
6
- # no regular words or you'll be exposed to dictionary attacks.
7
- Dummy::Application.config.secret_token = 'b230f4e50b455110724fca292b4f33304d40c8d059118e382150a12ba7701f31ec1333b592b3c8e1447ca736dbdab99f8124ab26dae8a1eb416d9928a171e345'
@@ -1,8 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
-
5
- # Use the database for sessions instead of the cookie-based default,
6
- # which shouldn't be used to store highly confidential information
7
- # (create the session table with "rails generate session_migration")
8
- # Dummy::Application.config.session_store :active_record_store
@@ -1,14 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
- #
3
- # This file contains settings for ActionController::ParamsWrapper which
4
- # is enabled by default.
5
-
6
- # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
- ActiveSupport.on_load(:action_controller) do
8
- wrap_parameters format: [:json]
9
- end
10
-
11
- # Disable root element in JSON by default.
12
- ActiveSupport.on_load(:active_record) do
13
- self.include_root_in_json = false
14
- end
@@ -1,5 +0,0 @@
1
- # Sample localization file for English. Add more files in this directory for other locales.
2
- # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
-
4
- en:
5
- hello: "Hello world"
@@ -1,11 +0,0 @@
1
- Rails.application.routes.draw do
2
- root :to => 'application#index'
3
-
4
- post 'oauth/token', :to => 'oauth#token'
5
-
6
- namespace :api do
7
- post 'dummy', :to => 'dummy#dummy'
8
-
9
- resources 'events', only: [:index]
10
- end
11
- end
Binary file
@@ -1,16 +0,0 @@
1
- # encoding: UTF-8
2
- # This file is auto-generated from the current state of the database. Instead
3
- # of editing this file, please use the migrations feature of Active Record to
4
- # incrementally modify your database, and then regenerate this schema definition.
5
- #
6
- # Note that this schema.rb definition is the authoritative source for your
7
- # database schema. If you need to create the application database on another
8
- # system, you should be using db:schema:load, not running all the migrations
9
- # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
- # you'll amass, the slower it'll run and the greater likelihood for issues).
11
- #
12
- # It's strongly recommended that you check this file into your version control system.
13
-
14
- ActiveRecord::Schema.define(version: 0) do
15
-
16
- end
Binary file
@@ -1,929 +0,0 @@
1
- Connecting to database specified by database.yml
2
-  (0.1ms) select sqlite_version(*)
3
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
- Connecting to database specified by database.yml
7
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
8
- Migrating to CreateOpenStaxAccountsAccounts (0)
9
-  (0.0ms) select sqlite_version(*)
10
-  (0.0ms) begin transaction
11
-  (0.4ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
12
-  (0.2ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
13
-  (0.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
14
-  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
15
-  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
16
-  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
17
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('0')
18
-  (1.7ms) commit transaction
19
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
20
- Connecting to database specified by database.yml
21
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
22
-  (0.2ms) select sqlite_version(*)
23
-  (1.6ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
24
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
25
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
26
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
27
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
28
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
29
-  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
30
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
31
-  (0.0ms) SELECT version FROM "schema_migrations"
32
-  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
33
- Connecting to database specified by database.yml
34
-  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
35
-  (0.2ms) select sqlite_version(*)
36
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
37
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
39
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
40
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
41
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
42
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
43
-  (0.1ms) SELECT version FROM "schema_migrations"
44
- Connecting to database specified by database.yml
45
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
46
-  (0.2ms) select sqlite_version(*)
47
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
48
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
49
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
50
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
51
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
52
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
53
-  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
54
-  (0.1ms) SELECT version FROM "schema_migrations"
55
- Connecting to database specified by database.yml
56
-  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
57
-  (0.2ms) select sqlite_version(*)
58
-  (1.7ms) DROP TABLE "openstax_accounts_accounts"
59
-  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
60
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
61
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
62
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
63
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
64
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
65
-  (0.1ms) SELECT version FROM "schema_migrations"
66
- Connecting to database specified by database.yml
67
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
68
-  (0.2ms) select sqlite_version(*)
69
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
70
-  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
71
-  (1.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
72
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
73
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
74
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
75
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
76
-  (0.1ms) SELECT version FROM "schema_migrations"
77
- Connecting to database specified by database.yml
78
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
79
-  (0.2ms) select sqlite_version(*)
80
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
81
-  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
82
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
83
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
84
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
85
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
86
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
87
-  (0.0ms) SELECT version FROM "schema_migrations"
88
- Connecting to database specified by database.yml
89
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
90
-  (0.3ms) select sqlite_version(*)
91
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
92
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
93
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
94
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
95
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
96
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
97
-  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
98
-  (0.1ms) SELECT version FROM "schema_migrations"
99
- Connecting to database specified by database.yml
100
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
101
-  (0.2ms) select sqlite_version(*)
102
-  (1.9ms) DROP TABLE "openstax_accounts_accounts"
103
-  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
104
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
105
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
106
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
107
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
108
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
109
-  (0.1ms) SELECT version FROM "schema_migrations"
110
- Connecting to database specified by database.yml
111
- Connecting to database specified by database.yml
112
-  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
113
- Migrating to CreateOpenStaxAccountsAccounts (0)
114
- Migrating to CreateUsers (1)
115
-  (0.0ms) select sqlite_version(*)
116
-  (0.0ms) begin transaction
117
-  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
118
-  (0.3ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
119
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('1')
120
-  (1.2ms) commit transaction
121
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
122
- Connecting to database specified by database.yml
123
-  (0.1ms) select sqlite_version(*)
124
-  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
125
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
126
-  (28.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
127
- Migrating to CreateOpenStaxAccountsAccounts (0)
128
-  (0.0ms) begin transaction
129
-  (0.3ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
130
-  (0.3ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
131
-  (0.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
132
-  (0.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
133
-  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
134
-  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
135
-  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
136
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('0')
137
-  (0.7ms) commit transaction
138
- Migrating to CreateUsers (1)
139
-  (0.0ms) begin transaction
140
-  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
141
-  (0.2ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
142
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('1')
143
-  (0.7ms) commit transaction
144
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
145
- Connecting to database specified by database.yml
146
-  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
147
-  (0.2ms) select sqlite_version(*)
148
-  (1.5ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
149
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
150
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
151
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
152
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
153
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
154
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
155
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
156
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
157
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
158
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
159
-  (0.0ms) SELECT version FROM "schema_migrations"
160
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
161
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
162
- Connecting to database specified by database.yml
163
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
164
-  (0.3ms) select sqlite_version(*)
165
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
166
-  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
167
-  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
168
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
169
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
170
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
171
-  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
172
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
173
-  (0.8ms) DROP TABLE "users"
174
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
175
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
176
-  (0.1ms) SELECT version FROM "schema_migrations"
177
- Connecting to database specified by database.yml
178
-  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
179
-  (0.3ms) select sqlite_version(*)
180
-  (1.5ms) DROP TABLE "openstax_accounts_accounts"
181
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
182
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
183
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
184
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
185
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
186
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
187
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
188
-  (0.7ms) DROP TABLE "users"
189
-  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
190
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
191
-  (0.1ms) SELECT version FROM "schema_migrations"
192
- Connecting to database specified by database.yml
193
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
194
-  (0.2ms) select sqlite_version(*)
195
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
196
-  (1.3ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
197
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
198
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
199
-  (0.6ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
200
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
201
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
202
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
203
-  (0.7ms) DROP TABLE "users"
204
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
205
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
206
-  (0.1ms) SELECT version FROM "schema_migrations"
207
- Connecting to database specified by database.yml
208
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
209
-  (0.3ms) select sqlite_version(*)
210
-  (1.5ms) DROP TABLE "openstax_accounts_accounts"
211
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
212
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
213
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
214
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
215
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
216
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
217
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
218
-  (0.8ms) DROP TABLE "users"
219
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
220
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
221
-  (0.1ms) SELECT version FROM "schema_migrations"
222
- Connecting to database specified by database.yml
223
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
224
-  (0.3ms) select sqlite_version(*)
225
-  (1.7ms) DROP TABLE "openstax_accounts_accounts"
226
-  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
227
-  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
228
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
229
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
230
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
231
-  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
232
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
233
-  (0.8ms) DROP TABLE "users"
234
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
235
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
236
-  (0.1ms) SELECT version FROM "schema_migrations"
237
- Connecting to database specified by database.yml
238
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
239
-  (0.3ms) select sqlite_version(*)
240
-  (1.7ms) DROP TABLE "openstax_accounts_accounts"
241
-  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
242
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
243
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
244
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
245
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
246
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
247
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
248
-  (0.8ms) DROP TABLE "users"
249
-  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
250
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
251
-  (0.1ms) SELECT version FROM "schema_migrations"
252
- Connecting to database specified by database.yml
253
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
254
-  (0.3ms) select sqlite_version(*)
255
-  (1.4ms) DROP TABLE "openstax_accounts_accounts"
256
-  (0.7ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
257
-  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
258
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
259
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
260
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
261
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
262
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
263
-  (0.8ms) DROP TABLE "users"
264
-  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
265
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
266
-  (0.1ms) SELECT version FROM "schema_migrations"
267
- Connecting to database specified by database.yml
268
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
269
-  (0.3ms) select sqlite_version(*)
270
-  (1.7ms) DROP TABLE "openstax_accounts_accounts"
271
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
272
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
273
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
274
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
275
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
276
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
277
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
278
-  (0.8ms) DROP TABLE "users"
279
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
280
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
281
-  (0.1ms) SELECT version FROM "schema_migrations"
282
- Connecting to database specified by database.yml
283
-  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
284
-  (0.3ms) select sqlite_version(*)
285
-  (1.7ms) DROP TABLE "openstax_accounts_accounts"
286
-  (1.0ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
287
-  (6.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
288
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
289
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
290
-  (5.6ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
291
-  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
292
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
293
-  (4.1ms) DROP TABLE "users"
294
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
295
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
296
-  (0.1ms) SELECT version FROM "schema_migrations"
297
- Connecting to database specified by database.yml
298
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
299
-  (0.3ms) select sqlite_version(*)
300
-  (1.4ms) DROP TABLE "openstax_accounts_accounts"
301
-  (4.6ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
302
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
303
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
304
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
305
-  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
306
-  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
307
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
308
-  (0.8ms) DROP TABLE "users"
309
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
310
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
311
-  (0.1ms) SELECT version FROM "schema_migrations"
312
- Connecting to database specified by database.yml
313
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
314
-  (0.2ms) select sqlite_version(*)
315
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
316
-  (7.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
317
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
318
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
319
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
320
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
321
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
322
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
323
-  (0.8ms) DROP TABLE "users"
324
-  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
325
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
326
-  (0.1ms) SELECT version FROM "schema_migrations"
327
- Connecting to database specified by database.yml
328
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
329
-  (0.3ms) select sqlite_version(*)
330
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
331
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
332
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
333
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
334
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
335
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
336
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
337
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
338
-  (0.8ms) DROP TABLE "users"
339
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
340
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
341
-  (0.1ms) SELECT version FROM "schema_migrations"
342
- Connecting to database specified by database.yml
343
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
344
-  (0.3ms) select sqlite_version(*)
345
-  (1.5ms) DROP TABLE "openstax_accounts_accounts"
346
-  (2.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
347
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
348
-  (2.5ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
349
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
350
-  (5.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
351
-  (5.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
352
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
353
-  (0.8ms) DROP TABLE "users"
354
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
355
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
356
-  (0.1ms) SELECT version FROM "schema_migrations"
357
- Connecting to database specified by database.yml
358
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
359
-  (0.2ms) select sqlite_version(*)
360
-  (1.0ms) DROP TABLE "openstax_accounts_accounts"
361
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
362
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
363
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
364
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
365
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
366
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
367
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
368
-  (0.6ms) DROP TABLE "users"
369
-  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
370
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
371
-  (0.1ms) SELECT version FROM "schema_migrations"
372
- Connecting to database specified by database.yml
373
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
374
-  (0.3ms) select sqlite_version(*)
375
-  (1.7ms) DROP TABLE "openstax_accounts_accounts"
376
-  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
377
-  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
378
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
379
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
380
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
381
-  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
382
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
383
-  (0.8ms) DROP TABLE "users"
384
-  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
385
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
386
-  (0.1ms) SELECT version FROM "schema_migrations"
387
- Connecting to database specified by database.yml
388
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
389
-  (0.3ms) select sqlite_version(*)
390
-  (1.2ms) DROP TABLE "openstax_accounts_accounts"
391
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
392
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
393
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
394
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
395
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
396
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
397
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
398
-  (0.7ms) DROP TABLE "users"
399
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
400
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
401
-  (0.1ms) SELECT version FROM "schema_migrations"
402
- Connecting to database specified by database.yml
403
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
404
-  (0.3ms) select sqlite_version(*)
405
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
406
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
407
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
408
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
409
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
410
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
411
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
412
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
413
-  (0.8ms) DROP TABLE "users"
414
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
415
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
416
-  (0.1ms) SELECT version FROM "schema_migrations"
417
- Connecting to database specified by database.yml
418
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
419
-  (0.3ms) select sqlite_version(*)
420
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
421
-  (1.7ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
422
-  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
423
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
424
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
425
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
426
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
427
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
428
-  (0.8ms) DROP TABLE "users"
429
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
430
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
431
-  (0.1ms) SELECT version FROM "schema_migrations"
432
- Connecting to database specified by database.yml
433
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
434
-  (0.3ms) select sqlite_version(*)
435
-  (1.5ms) DROP TABLE "openstax_accounts_accounts"
436
-  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
437
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
438
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
439
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
440
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
441
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
442
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
443
-  (0.7ms) DROP TABLE "users"
444
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
445
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
446
-  (0.1ms) SELECT version FROM "schema_migrations"
447
- Connecting to database specified by database.yml
448
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
449
-  (0.3ms) select sqlite_version(*)
450
-  (1.4ms) DROP TABLE "openstax_accounts_accounts"
451
-  (0.7ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
452
-  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
453
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
454
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
455
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
456
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
457
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
458
-  (0.7ms) DROP TABLE "users"
459
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
460
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
461
-  (0.1ms) SELECT version FROM "schema_migrations"
462
- Connecting to database specified by database.yml
463
-  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
464
-  (1.0ms) select sqlite_version(*)
465
-  (1.4ms) DROP TABLE "openstax_accounts_accounts"
466
-  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
467
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
468
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
469
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
470
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
471
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
472
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
473
-  (0.8ms) DROP TABLE "users"
474
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
475
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
476
-  (0.1ms) SELECT version FROM "schema_migrations"
477
- Connecting to database specified by database.yml
478
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
479
-  (0.2ms) select sqlite_version(*)
480
-  (1.8ms) DROP TABLE "openstax_accounts_accounts"
481
-  (1.0ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
482
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
483
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
484
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
485
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
486
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
487
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
488
-  (0.7ms) DROP TABLE "users"
489
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
490
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
491
-  (0.1ms) SELECT version FROM "schema_migrations"
492
- Connecting to database specified by database.yml
493
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
494
-  (0.2ms) select sqlite_version(*)
495
-  (1.7ms) DROP TABLE "openstax_accounts_accounts"
496
-  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
497
-  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
498
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
499
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
500
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
501
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
502
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
503
-  (0.8ms) DROP TABLE "users"
504
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
505
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
506
-  (0.1ms) SELECT version FROM "schema_migrations"
507
- Connecting to database specified by database.yml
508
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
509
-  (0.3ms) select sqlite_version(*)
510
-  (1.5ms) DROP TABLE "openstax_accounts_accounts"
511
-  (1.3ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
512
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
513
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
514
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
515
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
516
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
517
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
518
-  (0.7ms) DROP TABLE "users"
519
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
520
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
521
-  (0.1ms) SELECT version FROM "schema_migrations"
522
- Connecting to database specified by database.yml
523
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
524
-  (0.2ms) select sqlite_version(*)
525
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
526
-  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
527
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
528
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
529
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
530
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
531
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
532
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
533
-  (0.8ms) DROP TABLE "users"
534
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
535
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
536
-  (0.1ms) SELECT version FROM "schema_migrations"
537
- Connecting to database specified by database.yml
538
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
539
-  (0.2ms) select sqlite_version(*)
540
-  (1.8ms) DROP TABLE "openstax_accounts_accounts"
541
-  (1.0ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
542
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
543
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
544
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
545
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
546
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
547
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
548
-  (0.7ms) DROP TABLE "users"
549
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
550
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
551
-  (0.1ms) SELECT version FROM "schema_migrations"
552
- Connecting to database specified by database.yml
553
-  (2.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
554
-  (0.2ms) select sqlite_version(*)
555
-  (1.2ms) DROP TABLE "openstax_accounts_accounts"
556
-  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
557
-  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
558
-  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
559
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
560
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
561
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
562
-  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
563
-  (0.7ms) DROP TABLE "users"
564
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
565
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
566
-  (0.1ms) SELECT version FROM "schema_migrations"
567
- Connecting to database specified by database.yml
568
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
569
-  (0.2ms) select sqlite_version(*)
570
-  (1.6ms) DROP TABLE "openstax_accounts_accounts"
571
-  (1.6ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
572
-  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
573
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
574
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
575
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
576
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
577
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
578
-  (0.8ms) DROP TABLE "users"
579
-  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
580
-  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
581
-  (0.1ms) SELECT version FROM "schema_migrations"
582
- Connecting to database specified by database.yml
583
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
584
-  (0.2ms) select sqlite_version(*)
585
-  (1.3ms) DROP TABLE "openstax_accounts_accounts"
586
-  (0.6ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
587
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
588
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
589
-  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
590
-  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
591
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
592
-  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
593
-  (0.7ms) DROP TABLE "users"
594
-  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
595
-  (0.6ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
596
-  (0.1ms) SELECT version FROM "schema_migrations"
597
- Connecting to database specified by database.yml
598
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
599
-  (0.2ms) select sqlite_version(*)
600
-  (1.5ms) DROP TABLE "openstax_accounts_accounts"
601
-  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
602
-  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
603
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
604
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
605
-  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
606
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
607
-  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
608
-  (0.7ms) DROP TABLE "users"
609
-  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
610
-  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
611
-  (0.1ms) SELECT version FROM "schema_migrations"
612
-
613
-
614
- Started POST "/oauth/token" for 127.0.0.1 at 2014-07-22 10:58:39 -0500
615
- Processing by OauthController#token as */*
616
- Parameters: {"grant_type"=>"client_credentials"}
617
- Can't verify CSRF token authenticity
618
- Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
619
-
620
-
621
- Started GET "/api/events" for 127.0.0.1 at 2014-07-22 10:58:39 -0500
622
-
623
- ActionController::RoutingError (No route matches [GET] "/api/events"):
624
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
625
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
626
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
627
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
628
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
629
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
630
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
631
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
632
- quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
633
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
634
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
635
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
636
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
637
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
638
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
639
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
640
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
641
- railties (4.1.1) lib/rails/application.rb:144:in `call'
642
- capybara (2.2.1) lib/capybara/server.rb:19:in `call'
643
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
644
- /Users/dante/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
645
- /Users/dante/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
646
- /Users/dante/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
647
-
648
-
649
- Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
650
- Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
651
- Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.7ms)
652
- Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.5ms)
653
-  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
654
-  (0.1ms) select sqlite_version(*)
655
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
656
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
657
-
658
-
659
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:35:36 -0500
660
-
661
- AbstractController::ActionNotFound (The action 'index' could not be found for ApplicationController):
662
- actionpack (4.1.1) lib/abstract_controller/base.rb:131:in `process'
663
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
664
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
665
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
666
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
667
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
668
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
669
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
670
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
671
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
672
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
673
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
674
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
675
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
676
- rack (1.5.2) lib/rack/head.rb:11:in `call'
677
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
678
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
679
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
680
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
681
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
682
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
683
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
684
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
685
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
686
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
687
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
688
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
689
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
690
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
691
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
692
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
693
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
694
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
695
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
696
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
697
- quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
698
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
699
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
700
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
701
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
702
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
703
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
704
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
705
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
706
- railties (4.1.1) lib/rails/application.rb:144:in `call'
707
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
708
- thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
709
- thin (1.6.2) lib/thin/connection.rb:84:in `catch'
710
- thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
711
- thin (1.6.2) lib/thin/connection.rb:53:in `process'
712
- thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
713
- eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
714
- eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
715
- thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
716
- thin (1.6.2) lib/thin/server.rb:162:in `start'
717
- rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
718
- rack (1.5.2) lib/rack/server.rb:264:in `start'
719
- railties (4.1.1) lib/rails/commands/server.rb:69:in `start'
720
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:81:in `block in server'
721
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `tap'
722
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `server'
723
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:40:in `run_command!'
724
- railties (4.1.1) lib/rails/commands.rb:17:in `<top (required)>'
725
- script/rails:6:in `require'
726
- script/rails:6:in `<main>'
727
-
728
-
729
- Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (2.4ms)
730
-
731
-
732
- Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:35:44 -0500
733
- Processing by Api::EventsController#index as HTML
734
- Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
735
-
736
-
737
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:34 -0500
738
- Processing by ApplicationController#index as HTML
739
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
740
-
741
-
742
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:38 -0500
743
- Processing by ApplicationController#index as HTML
744
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
745
-
746
-
747
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:41 -0500
748
- Processing by ApplicationController#index as HTML
749
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
750
-
751
-
752
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:42 -0500
753
- Processing by ApplicationController#index as HTML
754
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
755
-
756
-
757
- Started GET "/api/dummt" for 127.0.0.1 at 2014-07-22 11:36:53 -0500
758
-
759
- ActionController::RoutingError (No route matches [GET] "/api/dummt"):
760
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
761
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
762
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
763
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
764
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
765
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
766
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
767
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
768
- quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
769
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
770
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
771
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
772
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
773
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
774
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
775
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
776
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
777
- railties (4.1.1) lib/rails/application.rb:144:in `call'
778
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
779
- thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
780
- thin (1.6.2) lib/thin/connection.rb:84:in `catch'
781
- thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
782
- thin (1.6.2) lib/thin/connection.rb:53:in `process'
783
- thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
784
- eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
785
- eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
786
- thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
787
- thin (1.6.2) lib/thin/server.rb:162:in `start'
788
- rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
789
- rack (1.5.2) lib/rack/server.rb:264:in `start'
790
- railties (4.1.1) lib/rails/commands/server.rb:69:in `start'
791
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:81:in `block in server'
792
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `tap'
793
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `server'
794
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:40:in `run_command!'
795
- railties (4.1.1) lib/rails/commands.rb:17:in `<top (required)>'
796
- script/rails:6:in `require'
797
- script/rails:6:in `<main>'
798
-
799
-
800
- Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms)
801
- Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
802
- Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.2ms)
803
- Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.5ms)
804
-
805
-
806
- Started GET "/api/dummy" for 127.0.0.1 at 2014-07-22 11:36:56 -0500
807
-
808
- ActionController::RoutingError (No route matches [GET] "/api/dummy"):
809
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
810
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
811
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
812
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
813
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
814
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
815
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
816
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
817
- quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
818
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
819
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
820
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
821
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
822
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
823
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
824
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
825
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
826
- railties (4.1.1) lib/rails/application.rb:144:in `call'
827
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
828
- thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
829
- thin (1.6.2) lib/thin/connection.rb:84:in `catch'
830
- thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
831
- thin (1.6.2) lib/thin/connection.rb:53:in `process'
832
- thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
833
- eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
834
- eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
835
- thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
836
- thin (1.6.2) lib/thin/server.rb:162:in `start'
837
- rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
838
- rack (1.5.2) lib/rack/server.rb:264:in `start'
839
- railties (4.1.1) lib/rails/commands/server.rb:69:in `start'
840
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:81:in `block in server'
841
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `tap'
842
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `server'
843
- railties (4.1.1) lib/rails/commands/commands_tasks.rb:40:in `run_command!'
844
- railties (4.1.1) lib/rails/commands.rb:17:in `<top (required)>'
845
- script/rails:6:in `require'
846
- script/rails:6:in `<main>'
847
-
848
-
849
- Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
850
- Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
851
- Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
852
- Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (12.6ms)
853
-
854
-
855
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:07 -0500
856
- Processing by ApplicationController#index as HTML
857
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
858
-
859
-
860
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:08 -0500
861
- Processing by ApplicationController#index as HTML
862
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
863
-
864
-
865
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:12 -0500
866
- Processing by ApplicationController#index as HTML
867
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
868
-
869
-
870
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:18 -0500
871
- Processing by ApplicationController#index as HTML
872
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
873
-
874
-
875
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:21 -0500
876
- Processing by ApplicationController#index as HTML
877
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
878
-
879
-
880
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:22 -0500
881
- Processing by ApplicationController#index as HTML
882
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
883
-
884
-
885
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:29 -0500
886
- Processing by ApplicationController#index as HTML
887
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
888
-
889
-
890
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:31 -0500
891
- Processing by ApplicationController#index as HTML
892
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
893
-
894
-
895
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:33 -0500
896
- Processing by ApplicationController#index as HTML
897
- Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
898
-
899
-
900
- Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:54 -0500
901
- Processing by ApplicationController#index as HTML
902
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
903
-
904
-
905
- Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:37:58 -0500
906
- Processing by Api::EventsController#index as HTML
907
- Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
908
-
909
-
910
- Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:38:00 -0500
911
- Processing by Api::EventsController#index as HTML
912
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
913
-
914
-
915
- Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:38:04 -0500
916
- Processing by Api::EventsController#index as HTML
917
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
918
-
919
-
920
- Started GET "/api/events?q=" for 127.0.0.1 at 2014-07-22 11:38:08 -0500
921
- Processing by Api::EventsController#index as HTML
922
- Parameters: {"q"=>""}
923
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
924
-
925
-
926
- Started GET "/api/events?q=" for 127.0.0.1 at 2014-07-22 11:38:11 -0500
927
- Processing by Api::EventsController#index as HTML
928
- Parameters: {"q"=>""}
929
- Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)