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.
- data/.gitignore +15 -0
- data/.rspec +1 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +8 -0
- data/Gemfile +4 -0
- data/MIT-LICENSE +3 -1
- data/README.md +58 -20
- data/Rakefile +5 -13
- data/exchange-client.gemspec +30 -0
- data/lib/openstax/exchange/client_instance.rb +23 -0
- data/lib/openstax/exchange/configuration.rb +12 -0
- data/lib/openstax/exchange/exceptions.rb +21 -0
- data/lib/openstax/exchange/exchange.rb +65 -0
- data/lib/openstax/exchange/fake_client/configuration.rb +13 -0
- data/lib/openstax/exchange/fake_client/fake_client.rb +71 -0
- data/lib/openstax/exchange/real_client/real_client.rb +76 -0
- data/lib/openstax/exchange/version.rb +1 -1
- data/lib/openstax_exchange.rb +8 -112
- data/spec/cassettes/OpenStax_Exchange/client_instance_configuration/can_be_configured_to_use_a_real_exchange_client.yml +48 -0
- data/spec/cassettes/OpenStax_Exchange/internal_client_instance/_client_defaults_to_a_real_exchange_client.yml +48 -0
- data/spec/cassettes/OpenStax_Exchange/internal_client_instance/_reset_causes_a_new_client_object_to_be_returned_by_client.yml +48 -0
- data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_create_identifier/success/creates_a_distinct_identifer_per_invokation.yml +146 -0
- data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_create_identifier/success/creates_and_returns_a_new_identifier.yml +97 -0
- data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_initialize/invalid_platform_id/raises_an_exception.yml +52 -0
- data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_initialize/invalid_platform_secret/raises_an_exception.yml +52 -0
- data/spec/cassettes/OpenStax_Exchange_RealClient/behaves_like_exchange_client_api_v1/_initialize/success/initializes_the_authentication_token.yml +48 -0
- 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
- 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
- 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
- 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
- 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
- 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
- data/spec/lib/openstax/exchange/client_configuration_spec.rb +58 -0
- data/spec/lib/openstax/exchange/fake_client_v1_spec.rb +14 -0
- data/spec/lib/openstax/exchange/real_client_v1_spec.rb +9 -0
- data/spec/lib/openstax/exchange/shared_examples_for_exchange_client_v1.rb +208 -0
- data/spec/spec_helper.rb +52 -38
- metadata +97 -100
- checksums.yaml +0 -15
- data/spec/dummy/README.md +0 -1
- data/spec/dummy/Rakefile +0 -7
- data/spec/dummy/app/assets/javascripts/application.js +0 -15
- data/spec/dummy/app/assets/stylesheets/application.css +0 -13
- data/spec/dummy/app/controllers/api/dummy_controller.rb +0 -11
- data/spec/dummy/app/controllers/api/events_controller.rb +0 -7
- data/spec/dummy/app/controllers/application_controller.rb +0 -7
- data/spec/dummy/app/controllers/oauth_controller.rb +0 -8
- data/spec/dummy/app/helpers/application_helper.rb +0 -2
- data/spec/dummy/config.ru +0 -4
- data/spec/dummy/config/application.rb +0 -55
- data/spec/dummy/config/boot.rb +0 -10
- data/spec/dummy/config/database.yml +0 -25
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -29
- data/spec/dummy/config/environments/production.rb +0 -69
- data/spec/dummy/config/environments/test.rb +0 -35
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/inflections.rb +0 -15
- data/spec/dummy/config/initializers/mime_types.rb +0 -5
- data/spec/dummy/config/initializers/openstax_exchange.rb +0 -10
- data/spec/dummy/config/initializers/secret_token.rb +0 -7
- data/spec/dummy/config/initializers/session_store.rb +0 -8
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/spec/dummy/config/locales/en.yml +0 -5
- data/spec/dummy/config/routes.rb +0 -11
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +0 -16
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +0 -929
- data/spec/dummy/log/test.log +0 -46753
- data/spec/dummy/public/404.html +0 -26
- data/spec/dummy/public/422.html +0 -26
- data/spec/dummy/public/500.html +0 -25
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +0 -6
- data/spec/lib/openstax_exchange_spec.rb +0 -23
data/spec/dummy/config/boot.rb
DELETED
|
@@ -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,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,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
|
data/spec/dummy/config/routes.rb
DELETED
|
Binary file
|
data/spec/dummy/db/schema.rb
DELETED
|
@@ -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
|
data/spec/dummy/db/test.sqlite3
DELETED
|
Binary file
|
|
@@ -1,929 +0,0 @@
|
|
|
1
|
-
Connecting to database specified by database.yml
|
|
2
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
3
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
5
|
-
[1m[35m (1.7ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
6
|
-
Connecting to database specified by database.yml
|
|
7
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
8
|
-
Migrating to CreateOpenStaxAccountsAccounts (0)
|
|
9
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
10
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
11
|
-
[1m[35m (0.4ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
13
|
-
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
14
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
|
15
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
16
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
17
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('0')
|
|
18
|
-
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
|
|
19
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
20
|
-
Connecting to database specified by database.yml
|
|
21
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
22
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
23
|
-
[1m[36m (1.6ms)[0m [1mCREATE 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) [0m
|
|
24
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
25
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
26
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
27
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
28
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
29
|
-
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
30
|
-
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
31
|
-
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
32
|
-
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
|
33
|
-
Connecting to database specified by database.yml
|
|
34
|
-
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
35
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
36
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
37
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
|
39
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
|
40
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
|
41
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
|
42
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
|
43
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
44
|
-
Connecting to database specified by database.yml
|
|
45
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
46
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
47
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
48
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
|
50
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
|
51
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
|
52
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
|
53
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
|
54
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
55
|
-
Connecting to database specified by database.yml
|
|
56
|
-
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
57
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
58
|
-
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
59
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
|
61
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
|
62
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
|
63
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
|
64
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
|
65
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
66
|
-
Connecting to database specified by database.yml
|
|
67
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
68
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
69
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
70
|
-
[1m[35m (1.1ms)[0m 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
|
-
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
|
72
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
|
73
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
|
74
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
|
75
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
|
76
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
77
|
-
Connecting to database specified by database.yml
|
|
78
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
79
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
80
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
81
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
|
83
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
|
84
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
|
85
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
|
86
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
|
87
|
-
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
88
|
-
Connecting to database specified by database.yml
|
|
89
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
90
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
91
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
92
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
|
94
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
|
95
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
|
96
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
|
97
|
-
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
|
98
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
99
|
-
Connecting to database specified by database.yml
|
|
100
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
101
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
102
|
-
[1m[36m (1.9ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
103
|
-
[1m[35m (1.1ms)[0m 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
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
|
105
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
|
106
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
|
107
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
|
108
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
|
109
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
110
|
-
Connecting to database specified by database.yml
|
|
111
|
-
Connecting to database specified by database.yml
|
|
112
|
-
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
113
|
-
Migrating to CreateOpenStaxAccountsAccounts (0)
|
|
114
|
-
Migrating to CreateUsers (1)
|
|
115
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
116
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
117
|
-
[1m[35m (0.4ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
119
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('1')
|
|
120
|
-
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
|
121
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
122
|
-
Connecting to database specified by database.yml
|
|
123
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
124
|
-
[1m[35m (1.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
125
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
126
|
-
[1m[35m (28.6ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
127
|
-
Migrating to CreateOpenStaxAccountsAccounts (0)
|
|
128
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
129
|
-
[1m[35m (0.3ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
131
|
-
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
132
|
-
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
133
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
134
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
|
135
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
|
136
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('0')[0m
|
|
137
|
-
[1m[35m (0.7ms)[0m commit transaction
|
|
138
|
-
Migrating to CreateUsers (1)
|
|
139
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
140
|
-
[1m[35m (0.2ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
142
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('1')
|
|
143
|
-
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
144
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
145
|
-
Connecting to database specified by database.yml
|
|
146
|
-
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
147
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
148
|
-
[1m[36m (1.5ms)[0m [1mCREATE 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) [0m
|
|
149
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
|
|
150
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
|
151
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
|
152
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
|
153
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
|
154
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
|
155
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
157
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
158
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
159
|
-
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
160
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('1')[0m
|
|
161
|
-
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
|
162
|
-
Connecting to database specified by database.yml
|
|
163
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
164
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
165
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
166
|
-
[1m[35m (1.1ms)[0m 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
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
168
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
169
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
170
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
171
|
-
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
172
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
173
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
174
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
176
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
177
|
-
Connecting to database specified by database.yml
|
|
178
|
-
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
179
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
180
|
-
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
181
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
183
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
184
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
185
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
186
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
187
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
188
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
189
|
-
[1m[35m (1.1ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
191
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
192
|
-
Connecting to database specified by database.yml
|
|
193
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
194
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
195
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
196
|
-
[1m[35m (1.3ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
198
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
199
|
-
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
200
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
201
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
202
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
203
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
204
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
206
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
207
|
-
Connecting to database specified by database.yml
|
|
208
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
209
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
210
|
-
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
211
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
213
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
214
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
215
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
216
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
217
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
218
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
219
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
221
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
222
|
-
Connecting to database specified by database.yml
|
|
223
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
224
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
225
|
-
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
226
|
-
[1m[35m (1.1ms)[0m 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
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
228
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
229
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
230
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
231
|
-
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
232
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
233
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
234
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
236
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
237
|
-
Connecting to database specified by database.yml
|
|
238
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
239
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
240
|
-
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
241
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
243
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
244
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
245
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
246
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
247
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
248
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
249
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
251
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
252
|
-
Connecting to database specified by database.yml
|
|
253
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
254
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
255
|
-
[1m[36m (1.4ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
256
|
-
[1m[35m (0.7ms)[0m 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
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
258
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
259
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
260
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
261
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
262
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
263
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
264
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
266
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
267
|
-
Connecting to database specified by database.yml
|
|
268
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
269
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
270
|
-
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
271
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
273
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
274
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
275
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
276
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
277
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
278
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
279
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
281
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
282
|
-
Connecting to database specified by database.yml
|
|
283
|
-
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
284
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
285
|
-
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
286
|
-
[1m[35m (1.0ms)[0m 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
|
-
[1m[36m (6.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
288
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
289
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
290
|
-
[1m[35m (5.6ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
291
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
292
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
293
|
-
[1m[36m (4.1ms)[0m [1mDROP TABLE "users"[0m
|
|
294
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
296
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
297
|
-
Connecting to database specified by database.yml
|
|
298
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
299
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
300
|
-
[1m[36m (1.4ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
301
|
-
[1m[35m (4.6ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
303
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
304
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
305
|
-
[1m[35m (1.0ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
306
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
307
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
308
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
309
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
311
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
312
|
-
Connecting to database specified by database.yml
|
|
313
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
314
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
315
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
316
|
-
[1m[35m (7.1ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
318
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
319
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
320
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
321
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
322
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
323
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
324
|
-
[1m[35m (0.7ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
326
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
327
|
-
Connecting to database specified by database.yml
|
|
328
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
329
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
330
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
331
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
333
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
334
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
335
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
336
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
337
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
338
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
339
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
341
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
342
|
-
Connecting to database specified by database.yml
|
|
343
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
344
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
345
|
-
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
346
|
-
[1m[35m (2.1ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
348
|
-
[1m[35m (2.5ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
349
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
350
|
-
[1m[35m (5.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
351
|
-
[1m[36m (5.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
352
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
353
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
354
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
356
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
357
|
-
Connecting to database specified by database.yml
|
|
358
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
359
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
360
|
-
[1m[36m (1.0ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
361
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
363
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
364
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
365
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
366
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
367
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
368
|
-
[1m[36m (0.6ms)[0m [1mDROP TABLE "users"[0m
|
|
369
|
-
[1m[35m (0.7ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
371
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
372
|
-
Connecting to database specified by database.yml
|
|
373
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
374
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
375
|
-
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
376
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
378
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
379
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
380
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
381
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
382
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
383
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
384
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
386
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
387
|
-
Connecting to database specified by database.yml
|
|
388
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
389
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
390
|
-
[1m[36m (1.2ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
391
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
393
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
394
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
395
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
396
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
397
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
398
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
399
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
401
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
402
|
-
Connecting to database specified by database.yml
|
|
403
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
404
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
405
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
406
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
408
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
409
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
410
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
411
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
412
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
413
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
414
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
416
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
417
|
-
Connecting to database specified by database.yml
|
|
418
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
419
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
420
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
421
|
-
[1m[35m (1.7ms)[0m 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
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
423
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
424
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
425
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
426
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
427
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
428
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
429
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
431
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
432
|
-
Connecting to database specified by database.yml
|
|
433
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
434
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
435
|
-
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
436
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
438
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
439
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
440
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
441
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
442
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
443
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
444
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
446
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
447
|
-
Connecting to database specified by database.yml
|
|
448
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
449
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
450
|
-
[1m[36m (1.4ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
451
|
-
[1m[35m (0.7ms)[0m 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
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
453
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
454
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
455
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
456
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
457
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
458
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
459
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
461
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
462
|
-
Connecting to database specified by database.yml
|
|
463
|
-
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
464
|
-
[1m[35m (1.0ms)[0m select sqlite_version(*)
|
|
465
|
-
[1m[36m (1.4ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
466
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
468
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
469
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
470
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
471
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
472
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
473
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
474
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
476
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
477
|
-
Connecting to database specified by database.yml
|
|
478
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
479
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
480
|
-
[1m[36m (1.8ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
481
|
-
[1m[35m (1.0ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
483
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
484
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
485
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
486
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
487
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
488
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
489
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
491
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
492
|
-
Connecting to database specified by database.yml
|
|
493
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
494
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
495
|
-
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
496
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
498
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
499
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
500
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
501
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
502
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
503
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
504
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
506
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
507
|
-
Connecting to database specified by database.yml
|
|
508
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
509
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
510
|
-
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
511
|
-
[1m[35m (1.3ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
513
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
514
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
515
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
516
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
517
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
518
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
519
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
521
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
522
|
-
Connecting to database specified by database.yml
|
|
523
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
524
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
525
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
526
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
528
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
529
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
530
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
531
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
532
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
533
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
534
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
536
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
537
|
-
Connecting to database specified by database.yml
|
|
538
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
539
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
540
|
-
[1m[36m (1.8ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
541
|
-
[1m[35m (1.0ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
543
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
544
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
545
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
546
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
547
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
548
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
549
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
551
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
552
|
-
Connecting to database specified by database.yml
|
|
553
|
-
[1m[36m (2.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
554
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
555
|
-
[1m[36m (1.2ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
556
|
-
[1m[35m (1.1ms)[0m 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
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
558
|
-
[1m[35m (1.0ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
559
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
560
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
561
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
562
|
-
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
563
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
564
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
566
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
567
|
-
Connecting to database specified by database.yml
|
|
568
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
569
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
570
|
-
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
571
|
-
[1m[35m (1.6ms)[0m 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
|
-
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
573
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
574
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
575
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
576
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
577
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
578
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
|
579
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
581
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
582
|
-
Connecting to database specified by database.yml
|
|
583
|
-
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
584
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
585
|
-
[1m[36m (1.3ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
586
|
-
[1m[35m (0.6ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
588
|
-
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
589
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
590
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
591
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
592
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
593
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
594
|
-
[1m[35m (0.7ms)[0m 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
|
-
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
596
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
597
|
-
Connecting to database specified by database.yml
|
|
598
|
-
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
599
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
600
|
-
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
|
601
|
-
[1m[35m (1.1ms)[0m 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
|
-
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
|
603
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
|
604
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
|
605
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
|
606
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
|
607
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
|
608
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
|
609
|
-
[1m[35m (0.7ms)[0m 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
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
|
611
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
654
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
655
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
656
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m 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)
|