gamification 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (72) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +28 -0
  4. data/app/assets/javascripts/gamification/application.js +13 -0
  5. data/app/assets/stylesheets/gamification/application.css +15 -0
  6. data/app/controllers/gamification/application_controller.rb +4 -0
  7. data/app/helpers/gamification/application_helper.rb +4 -0
  8. data/app/models/gamification/scoring.rb +5 -0
  9. data/app/models/gamification/task.rb +5 -0
  10. data/app/views/layouts/gamification/application.html.erb +14 -0
  11. data/config/routes.rb +2 -0
  12. data/db/migrate/20140309173049_create_gamification_tasks.rb +10 -0
  13. data/db/migrate/20140309175957_create_gamification_scorings.rb +12 -0
  14. data/lib/gamification.rb +5 -0
  15. data/lib/gamification/concerns.rb +3 -0
  16. data/lib/gamification/concerns/models.rb +4 -0
  17. data/lib/gamification/concerns/models/scoring.rb +8 -0
  18. data/lib/gamification/concerns/models/task.rb +50 -0
  19. data/lib/gamification/engine.rb +12 -0
  20. data/lib/gamification/version.rb +3 -0
  21. data/lib/tasks/gamification_tasks.rake +4 -0
  22. data/spec/dummy/README.rdoc +28 -0
  23. data/spec/dummy/Rakefile +6 -0
  24. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  25. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  26. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  27. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  28. data/spec/dummy/app/models/article.rb +3 -0
  29. data/spec/dummy/app/models/user.rb +3 -0
  30. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  31. data/spec/dummy/bin/bundle +3 -0
  32. data/spec/dummy/bin/rails +4 -0
  33. data/spec/dummy/bin/rake +4 -0
  34. data/spec/dummy/config.ru +4 -0
  35. data/spec/dummy/config/application.rb +29 -0
  36. data/spec/dummy/config/boot.rb +5 -0
  37. data/spec/dummy/config/database.yml +30 -0
  38. data/spec/dummy/config/environment.rb +5 -0
  39. data/spec/dummy/config/environments/development.rb +37 -0
  40. data/spec/dummy/config/environments/production.rb +83 -0
  41. data/spec/dummy/config/environments/test.rb +39 -0
  42. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  43. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  44. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  45. data/spec/dummy/config/initializers/inflections.rb +16 -0
  46. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  47. data/spec/dummy/config/initializers/session_store.rb +3 -0
  48. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  49. data/spec/dummy/config/locales/en.yml +23 -0
  50. data/spec/dummy/config/routes.rb +4 -0
  51. data/spec/dummy/config/secrets.yml +22 -0
  52. data/spec/dummy/db/development.sqlite3 +0 -0
  53. data/spec/dummy/db/migrate/20140309200402_create_users.rb +8 -0
  54. data/spec/dummy/db/migrate/20140309200453_create_articles.rb +8 -0
  55. data/spec/dummy/db/schema.rb +47 -0
  56. data/spec/dummy/db/test.sqlite3 +0 -0
  57. data/spec/dummy/log/development.log +2547 -0
  58. data/spec/dummy/log/test.log +4316 -0
  59. data/spec/dummy/public/404.html +67 -0
  60. data/spec/dummy/public/422.html +67 -0
  61. data/spec/dummy/public/500.html +66 -0
  62. data/spec/dummy/public/favicon.ico +0 -0
  63. data/spec/dummy/spec/factories/articles.rb +6 -0
  64. data/spec/dummy/spec/factories/users.rb +6 -0
  65. data/spec/dummy/spec/models/article_spec.rb +5 -0
  66. data/spec/dummy/spec/models/user_spec.rb +5 -0
  67. data/spec/factories/gamification_scorings.rb +8 -0
  68. data/spec/factories/gamification_tasks.rb +8 -0
  69. data/spec/models/gamification/scoring_spec.rb +7 -0
  70. data/spec/models/gamification/task_spec.rb +77 -0
  71. data/spec/spec_helper.rb +23 -0
  72. metadata +222 -0
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,37 @@
1
+ Rails.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
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations.
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+
30
+ # Adds additional error checking when serving assets at runtime.
31
+ # Checks for improperly declared sprockets dependencies.
32
+ # Raises helpful error messages.
33
+ config.assets.raise_runtime_errors = true
34
+
35
+ # Raises error for missing translations
36
+ # config.action_view.raise_on_missing_translations = true
37
+ end
@@ -0,0 +1,83 @@
1
+ Rails.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
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation cannot be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+
81
+ # Do not dump schema after migrations.
82
+ config.active_record.dump_schema_after_migration = false
83
+ end
@@ -0,0 +1,39 @@
1
+ Rails.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
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+ end
@@ -0,0 +1,7 @@
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!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
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] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount Gamification::Engine => "/gamification"
4
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: f2cb290e58623c3f634470011e217b030a3123a856b1d0dd8cbfc06a877189d0206890f2a052bdc8eb311a833fd07bb530cdeef1f6d96006361b738059657899
15
+
16
+ test:
17
+ secret_key_base: f540ba474b71348416cf3cb0cbf1299d89ba589225d81278dd8efc0190866b3bccd90197c830d6c3b474abbe7913e9f3c50492b8c5739a2abd785640cb228f43
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
Binary file
@@ -0,0 +1,8 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+
5
+ t.timestamps
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ class CreateArticles < ActiveRecord::Migration
2
+ def change
3
+ create_table :articles do |t|
4
+
5
+ t.timestamps
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,47 @@
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: 20140309200453) do
15
+
16
+ create_table "articles", force: true do |t|
17
+ t.datetime "created_at"
18
+ t.datetime "updated_at"
19
+ end
20
+
21
+ create_table "gamification_scorings", force: true do |t|
22
+ t.integer "task_id"
23
+ t.integer "subjectable_id"
24
+ t.string "subjectable_type"
25
+ t.datetime "created_at"
26
+ t.datetime "updated_at"
27
+ end
28
+
29
+ add_index "gamification_scorings", ["subjectable_id", "subjectable_type"], name: "index_gamification_scorings_on_subjectable"
30
+ add_index "gamification_scorings", ["task_id"], name: "index_gamification_scorings_on_task_id"
31
+
32
+ create_table "gamification_tasks", force: true do |t|
33
+ t.integer "taskable_id"
34
+ t.string "taskable_type"
35
+ t.integer "points"
36
+ t.datetime "created_at"
37
+ t.datetime "updated_at"
38
+ end
39
+
40
+ add_index "gamification_tasks", ["taskable_id", "taskable_type"], name: "index_gamification_tasks_on_taskable_id_and_taskable_type"
41
+
42
+ create_table "users", force: true do |t|
43
+ t.datetime "created_at"
44
+ t.datetime "updated_at"
45
+ end
46
+
47
+ end
Binary file
@@ -0,0 +1,2547 @@
1
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
6
+  (0.1ms) select sqlite_version(*)
7
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+  (0.1ms) SELECT version FROM "schema_migrations"
9
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ Migrating to CreateGamificationTasks (20140309173049)
12
+  (0.1ms) begin transaction
13
+  (0.5ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
14
+  (0.0ms) select sqlite_version(*)
15
+  (0.1ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
16
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140309173049"]]
17
+  (0.9ms) commit transaction
18
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19
+  (0.1ms)  SELECT sql
20
+ FROM sqlite_master
21
+ WHERE name='index_gamification_tasks_on_taskable_id_and_taskable_type' AND type='index'
22
+ UNION ALL
23
+ SELECT sql
24
+ FROM sqlite_temp_master
25
+ WHERE name='index_gamification_tasks_on_taskable_id_and_taskable_type' AND type='index'
26
+ 
27
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
28
+ Migrating to CreateGamificationScorings (20140309175957)
29
+  (0.1ms) begin transaction
30
+  (0.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
31
+  (0.1ms) select sqlite_version(*)
32
+  (0.1ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
33
+  (0.3ms) rollback transaction
34
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
35
+ Migrating to CreateGamificationScorings (20140309175957)
36
+  (0.1ms) begin transaction
37
+  (0.3ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
38
+  (0.0ms) select sqlite_version(*)
39
+  (0.1ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
40
+  (0.1ms) SELECT sql
41
+ FROM sqlite_master
42
+ WHERE name='index_gamification_scorings_on_task_id' AND type='index'
43
+ UNION ALL
44
+ SELECT sql
45
+ FROM sqlite_temp_master
46
+ WHERE name='index_gamification_scorings_on_task_id' AND type='index'
47
+
48
+  (0.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
49
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140309175957"]]
50
+  (0.7ms) commit transaction
51
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
52
+  (0.1ms)  SELECT sql
53
+ FROM sqlite_master
54
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
55
+ UNION ALL
56
+ SELECT sql
57
+ FROM sqlite_temp_master
58
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
59
+ 
60
+  (0.1ms) SELECT sql
61
+ FROM sqlite_master
62
+ WHERE name='index_gamification_scorings_on_task_id' AND type='index'
63
+ UNION ALL
64
+ SELECT sql
65
+ FROM sqlite_temp_master
66
+ WHERE name='index_gamification_scorings_on_task_id' AND type='index'
67
+
68
+  (0.1ms)  SELECT sql
69
+ FROM sqlite_master
70
+ WHERE name='index_gamification_tasks_on_taskable_id_and_taskable_type' AND type='index'
71
+ UNION ALL
72
+ SELECT sql
73
+ FROM sqlite_temp_master
74
+ WHERE name='index_gamification_tasks_on_taskable_id_and_taskable_type' AND type='index'
75
+ 
76
+  (2.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
77
+  (0.1ms) select sqlite_version(*)
78
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
79
+  (0.1ms) SELECT sql
80
+ FROM sqlite_master
81
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
82
+ UNION ALL
83
+ SELECT sql
84
+ FROM sqlite_temp_master
85
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
86
+
87
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
88
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
89
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
90
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
91
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
92
+  (0.1ms) SELECT version FROM "schema_migrations"
93
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
94
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
95
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
96
+  (0.1ms) select sqlite_version(*)
97
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
98
+  (0.1ms) SELECT sql
99
+ FROM sqlite_master
100
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
101
+ UNION ALL
102
+ SELECT sql
103
+ FROM sqlite_temp_master
104
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
105
+
106
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
107
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
108
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
109
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
110
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
111
+  (0.1ms) SELECT version FROM "schema_migrations"
112
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
113
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
114
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
115
+  (0.1ms) select sqlite_version(*)
116
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
117
+  (0.1ms) SELECT sql
118
+ FROM sqlite_master
119
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
120
+ UNION ALL
121
+ SELECT sql
122
+ FROM sqlite_temp_master
123
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
124
+
125
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
126
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
127
+  (0.6ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
128
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
129
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
130
+  (0.1ms) SELECT version FROM "schema_migrations"
131
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
132
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
133
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
134
+  (0.1ms) select sqlite_version(*)
135
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
136
+  (0.1ms) SELECT sql
137
+ FROM sqlite_master
138
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
139
+ UNION ALL
140
+ SELECT sql
141
+ FROM sqlite_temp_master
142
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
143
+
144
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
145
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
146
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
147
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
148
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
149
+  (0.1ms) SELECT version FROM "schema_migrations"
150
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
151
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
152
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
153
+  (0.1ms) select sqlite_version(*)
154
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
155
+  (0.1ms) SELECT sql
156
+ FROM sqlite_master
157
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
158
+ UNION ALL
159
+ SELECT sql
160
+ FROM sqlite_temp_master
161
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
162
+
163
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
164
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
165
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
166
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
167
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
168
+  (0.1ms) SELECT version FROM "schema_migrations"
169
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
170
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
171
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
172
+  (0.1ms) select sqlite_version(*)
173
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
174
+  (0.2ms) SELECT sql
175
+ FROM sqlite_master
176
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
177
+ UNION ALL
178
+ SELECT sql
179
+ FROM sqlite_temp_master
180
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
181
+
182
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
183
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
184
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
185
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
186
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
187
+  (0.1ms) SELECT version FROM "schema_migrations"
188
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
189
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
190
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
191
+  (0.1ms) select sqlite_version(*)
192
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
193
+  (0.1ms) SELECT sql
194
+ FROM sqlite_master
195
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
196
+ UNION ALL
197
+ SELECT sql
198
+ FROM sqlite_temp_master
199
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
200
+
201
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
202
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
203
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
204
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
205
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
206
+  (0.1ms) SELECT version FROM "schema_migrations"
207
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
208
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
209
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
210
+  (0.1ms) select sqlite_version(*)
211
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
212
+  (0.1ms) SELECT sql
213
+ FROM sqlite_master
214
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
215
+ UNION ALL
216
+ SELECT sql
217
+ FROM sqlite_temp_master
218
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
219
+
220
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
221
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
222
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
223
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
224
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
225
+  (0.1ms) SELECT version FROM "schema_migrations"
226
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
227
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
228
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
229
+  (0.1ms) select sqlite_version(*)
230
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
231
+  (0.2ms) SELECT sql
232
+ FROM sqlite_master
233
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
234
+ UNION ALL
235
+ SELECT sql
236
+ FROM sqlite_temp_master
237
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
238
+
239
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
240
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
241
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
242
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
243
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
244
+  (0.1ms) SELECT version FROM "schema_migrations"
245
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
246
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
247
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
248
+  (0.1ms) select sqlite_version(*)
249
+  (1.2ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
250
+  (0.2ms) SELECT sql
251
+ FROM sqlite_master
252
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
253
+ UNION ALL
254
+ SELECT sql
255
+ FROM sqlite_temp_master
256
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
257
+
258
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
259
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
260
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
261
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
262
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
263
+  (0.1ms) SELECT version FROM "schema_migrations"
264
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
265
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
266
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
267
+  (0.1ms) select sqlite_version(*)
268
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
269
+  (0.1ms) SELECT sql
270
+ FROM sqlite_master
271
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
272
+ UNION ALL
273
+ SELECT sql
274
+ FROM sqlite_temp_master
275
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
276
+
277
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
278
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
279
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
280
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
281
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
282
+  (0.1ms) SELECT version FROM "schema_migrations"
283
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
284
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
285
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
286
+  (0.1ms) select sqlite_version(*)
287
+  (1.2ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
288
+  (0.2ms) SELECT sql
289
+ FROM sqlite_master
290
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
291
+ UNION ALL
292
+ SELECT sql
293
+ FROM sqlite_temp_master
294
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
295
+
296
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
297
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
298
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
299
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
300
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
301
+  (0.1ms) SELECT version FROM "schema_migrations"
302
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
303
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
304
+  (2.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
305
+  (0.1ms) select sqlite_version(*)
306
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
307
+  (0.2ms) SELECT sql
308
+ FROM sqlite_master
309
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
310
+ UNION ALL
311
+ SELECT sql
312
+ FROM sqlite_temp_master
313
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
314
+
315
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
316
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
317
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
318
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
319
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
320
+  (0.1ms) SELECT version FROM "schema_migrations"
321
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
322
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
323
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
324
+  (0.1ms) select sqlite_version(*)
325
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
326
+  (0.1ms) SELECT sql
327
+ FROM sqlite_master
328
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
329
+ UNION ALL
330
+ SELECT sql
331
+ FROM sqlite_temp_master
332
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
333
+
334
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
335
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
336
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
337
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
338
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
339
+  (0.1ms) SELECT version FROM "schema_migrations"
340
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
341
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
342
+  (1.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
343
+  (0.1ms) select sqlite_version(*)
344
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
345
+  (0.1ms) SELECT sql
346
+ FROM sqlite_master
347
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
348
+ UNION ALL
349
+ SELECT sql
350
+ FROM sqlite_temp_master
351
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
352
+
353
+  (2.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
354
+  (1.1ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
355
+  (1.0ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
356
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
357
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
358
+  (0.1ms) SELECT version FROM "schema_migrations"
359
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
360
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
361
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
362
+  (0.2ms) select sqlite_version(*)
363
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
364
+  (0.1ms) SELECT sql
365
+ FROM sqlite_master
366
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
367
+ UNION ALL
368
+ SELECT sql
369
+ FROM sqlite_temp_master
370
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
371
+
372
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
373
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
374
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
375
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
376
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
377
+  (0.1ms) SELECT version FROM "schema_migrations"
378
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
379
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
380
+  (2.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
381
+  (0.1ms) select sqlite_version(*)
382
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
383
+  (0.1ms) SELECT sql
384
+ FROM sqlite_master
385
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
386
+ UNION ALL
387
+ SELECT sql
388
+ FROM sqlite_temp_master
389
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
390
+
391
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
392
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
393
+  (1.0ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
394
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
395
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
396
+  (0.1ms) SELECT version FROM "schema_migrations"
397
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
398
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
399
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
400
+  (0.1ms) select sqlite_version(*)
401
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
402
+  (0.1ms) SELECT sql
403
+ FROM sqlite_master
404
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
405
+ UNION ALL
406
+ SELECT sql
407
+ FROM sqlite_temp_master
408
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
409
+
410
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
411
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
412
+  (1.0ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
413
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
414
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
415
+  (0.1ms) SELECT version FROM "schema_migrations"
416
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
417
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
418
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
419
+  (0.1ms) select sqlite_version(*)
420
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
421
+  (0.1ms) SELECT sql
422
+ FROM sqlite_master
423
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
424
+ UNION ALL
425
+ SELECT sql
426
+ FROM sqlite_temp_master
427
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
428
+
429
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
430
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
431
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
432
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
433
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
434
+  (0.1ms) SELECT version FROM "schema_migrations"
435
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
436
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
437
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
438
+  (0.1ms) select sqlite_version(*)
439
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
440
+  (0.1ms) SELECT sql
441
+ FROM sqlite_master
442
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
443
+ UNION ALL
444
+ SELECT sql
445
+ FROM sqlite_temp_master
446
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
447
+
448
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
449
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
450
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
451
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
452
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
453
+  (0.1ms) SELECT version FROM "schema_migrations"
454
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
455
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
456
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
457
+  (0.1ms) select sqlite_version(*)
458
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
459
+  (0.1ms) SELECT sql
460
+ FROM sqlite_master
461
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
462
+ UNION ALL
463
+ SELECT sql
464
+ FROM sqlite_temp_master
465
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
466
+
467
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
468
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
469
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
470
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
471
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
472
+  (0.1ms) SELECT version FROM "schema_migrations"
473
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
474
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
475
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
476
+  (0.1ms) select sqlite_version(*)
477
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
478
+  (0.1ms) SELECT sql
479
+ FROM sqlite_master
480
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
481
+ UNION ALL
482
+ SELECT sql
483
+ FROM sqlite_temp_master
484
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
485
+
486
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
487
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
488
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
489
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
490
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
491
+  (0.1ms) SELECT version FROM "schema_migrations"
492
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
493
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
494
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
495
+  (0.1ms) select sqlite_version(*)
496
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
497
+  (0.1ms) SELECT sql
498
+ FROM sqlite_master
499
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
500
+ UNION ALL
501
+ SELECT sql
502
+ FROM sqlite_temp_master
503
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
504
+
505
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
506
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
507
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
508
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
509
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
510
+  (0.1ms) SELECT version FROM "schema_migrations"
511
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
512
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
513
+  (2.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
514
+  (0.1ms) select sqlite_version(*)
515
+  (1.2ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
516
+  (0.2ms) SELECT sql
517
+ FROM sqlite_master
518
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
519
+ UNION ALL
520
+ SELECT sql
521
+ FROM sqlite_temp_master
522
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
523
+
524
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
525
+  (1.1ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
526
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
527
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
528
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
529
+  (0.1ms) SELECT version FROM "schema_migrations"
530
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
531
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
532
+  (2.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
533
+  (0.2ms) select sqlite_version(*)
534
+  (1.2ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
535
+  (0.1ms) SELECT sql
536
+ FROM sqlite_master
537
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
538
+ UNION ALL
539
+ SELECT sql
540
+ FROM sqlite_temp_master
541
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
542
+
543
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
544
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
545
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
546
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
547
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
548
+  (0.1ms) SELECT version FROM "schema_migrations"
549
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
550
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
551
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
552
+  (0.1ms) select sqlite_version(*)
553
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
554
+  (0.1ms) SELECT sql
555
+ FROM sqlite_master
556
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
557
+ UNION ALL
558
+ SELECT sql
559
+ FROM sqlite_temp_master
560
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
561
+
562
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
563
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
564
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
565
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
566
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
567
+  (0.1ms) SELECT version FROM "schema_migrations"
568
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
569
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
570
+  (2.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
571
+  (0.1ms) select sqlite_version(*)
572
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
573
+  (0.1ms) SELECT sql
574
+ FROM sqlite_master
575
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
576
+ UNION ALL
577
+ SELECT sql
578
+ FROM sqlite_temp_master
579
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
580
+
581
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
582
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
583
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
584
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
585
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
586
+  (0.1ms) SELECT version FROM "schema_migrations"
587
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
588
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
589
+  (1.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
590
+  (0.1ms) select sqlite_version(*)
591
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
592
+  (0.1ms) SELECT sql
593
+ FROM sqlite_master
594
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
595
+ UNION ALL
596
+ SELECT sql
597
+ FROM sqlite_temp_master
598
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
599
+
600
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
601
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
602
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
603
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
604
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
605
+  (0.1ms) SELECT version FROM "schema_migrations"
606
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
607
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
608
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
609
+  (0.1ms) select sqlite_version(*)
610
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
611
+  (0.1ms) SELECT sql
612
+ FROM sqlite_master
613
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
614
+ UNION ALL
615
+ SELECT sql
616
+ FROM sqlite_temp_master
617
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
618
+
619
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
620
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
621
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
622
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
623
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
624
+  (0.1ms) SELECT version FROM "schema_migrations"
625
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
626
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
627
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
628
+  (0.1ms) select sqlite_version(*)
629
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
630
+  (0.2ms) SELECT sql
631
+ FROM sqlite_master
632
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
633
+ UNION ALL
634
+ SELECT sql
635
+ FROM sqlite_temp_master
636
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
637
+
638
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
639
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
640
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
641
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
642
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
643
+  (0.1ms) SELECT version FROM "schema_migrations"
644
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
645
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
646
+  (2.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
647
+  (0.1ms) select sqlite_version(*)
648
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
649
+  (0.1ms) SELECT sql
650
+ FROM sqlite_master
651
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
652
+ UNION ALL
653
+ SELECT sql
654
+ FROM sqlite_temp_master
655
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
656
+
657
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
658
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
659
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
660
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
661
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
662
+  (0.1ms) SELECT version FROM "schema_migrations"
663
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
664
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
665
+  (2.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
666
+  (0.1ms) select sqlite_version(*)
667
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
668
+  (0.1ms) SELECT sql
669
+ FROM sqlite_master
670
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
671
+ UNION ALL
672
+ SELECT sql
673
+ FROM sqlite_temp_master
674
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
675
+
676
+  (0.6ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
677
+  (0.6ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
678
+  (0.6ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
679
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
680
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
681
+  (0.1ms) SELECT version FROM "schema_migrations"
682
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
683
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
684
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
685
+  (0.1ms) select sqlite_version(*)
686
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
687
+  (0.1ms) SELECT sql
688
+ FROM sqlite_master
689
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
690
+ UNION ALL
691
+ SELECT sql
692
+ FROM sqlite_temp_master
693
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
694
+
695
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
696
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
697
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
698
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
699
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
700
+  (0.1ms) SELECT version FROM "schema_migrations"
701
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
702
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
703
+  (1.2ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
704
+  (0.1ms) select sqlite_version(*)
705
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
706
+  (0.1ms) SELECT sql
707
+ FROM sqlite_master
708
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
709
+ UNION ALL
710
+ SELECT sql
711
+ FROM sqlite_temp_master
712
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
713
+
714
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
715
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
716
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
717
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
718
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
719
+  (0.1ms) SELECT version FROM "schema_migrations"
720
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
721
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
722
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
723
+  (0.1ms) select sqlite_version(*)
724
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
725
+  (0.1ms) SELECT sql
726
+ FROM sqlite_master
727
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
728
+ UNION ALL
729
+ SELECT sql
730
+ FROM sqlite_temp_master
731
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
732
+
733
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
734
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
735
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
736
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
737
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
738
+  (0.1ms) SELECT version FROM "schema_migrations"
739
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
740
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
741
+  (2.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
742
+  (0.1ms) select sqlite_version(*)
743
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
744
+  (0.1ms) SELECT sql
745
+ FROM sqlite_master
746
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
747
+ UNION ALL
748
+ SELECT sql
749
+ FROM sqlite_temp_master
750
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
751
+
752
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
753
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
754
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
755
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
756
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
757
+  (0.1ms) SELECT version FROM "schema_migrations"
758
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
759
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
760
+  (1.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
761
+  (0.1ms) select sqlite_version(*)
762
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
763
+  (0.1ms) SELECT sql
764
+ FROM sqlite_master
765
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
766
+ UNION ALL
767
+ SELECT sql
768
+ FROM sqlite_temp_master
769
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
770
+
771
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
772
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
773
+  (0.6ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
774
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
775
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
776
+  (0.1ms) SELECT version FROM "schema_migrations"
777
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
778
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
779
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
780
+  (0.1ms) select sqlite_version(*)
781
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
782
+  (0.1ms) SELECT sql
783
+ FROM sqlite_master
784
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
785
+ UNION ALL
786
+ SELECT sql
787
+ FROM sqlite_temp_master
788
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
789
+
790
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
791
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
792
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
793
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
794
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
795
+  (0.1ms) SELECT version FROM "schema_migrations"
796
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
797
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
798
+  (2.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
799
+  (0.1ms) select sqlite_version(*)
800
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
801
+  (0.1ms) SELECT sql
802
+ FROM sqlite_master
803
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
804
+ UNION ALL
805
+ SELECT sql
806
+ FROM sqlite_temp_master
807
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
808
+
809
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
810
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
811
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
812
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
813
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
814
+  (0.1ms) SELECT version FROM "schema_migrations"
815
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
816
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
817
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
818
+  (0.1ms) select sqlite_version(*)
819
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
820
+  (0.1ms) SELECT sql
821
+ FROM sqlite_master
822
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
823
+ UNION ALL
824
+ SELECT sql
825
+ FROM sqlite_temp_master
826
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
827
+
828
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
829
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
830
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
831
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
832
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
833
+  (0.1ms) SELECT version FROM "schema_migrations"
834
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
835
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
836
+  (2.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
837
+  (0.1ms) select sqlite_version(*)
838
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
839
+  (0.1ms) SELECT sql
840
+ FROM sqlite_master
841
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
842
+ UNION ALL
843
+ SELECT sql
844
+ FROM sqlite_temp_master
845
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
846
+
847
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
848
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
849
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
850
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
851
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
852
+  (0.1ms) SELECT version FROM "schema_migrations"
853
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
854
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
855
+  (2.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
856
+  (0.1ms) select sqlite_version(*)
857
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
858
+  (0.1ms) SELECT sql
859
+ FROM sqlite_master
860
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
861
+ UNION ALL
862
+ SELECT sql
863
+ FROM sqlite_temp_master
864
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
865
+
866
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
867
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
868
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
869
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
870
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
871
+  (0.1ms) SELECT version FROM "schema_migrations"
872
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
873
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
874
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
875
+  (0.1ms) select sqlite_version(*)
876
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
877
+  (0.1ms) SELECT sql
878
+ FROM sqlite_master
879
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
880
+ UNION ALL
881
+ SELECT sql
882
+ FROM sqlite_temp_master
883
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
884
+
885
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
886
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
887
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
888
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
889
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
890
+  (0.1ms) SELECT version FROM "schema_migrations"
891
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
892
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
893
+  (2.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
894
+  (0.1ms) select sqlite_version(*)
895
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
896
+  (0.1ms) SELECT sql
897
+ FROM sqlite_master
898
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
899
+ UNION ALL
900
+ SELECT sql
901
+ FROM sqlite_temp_master
902
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
903
+
904
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
905
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
906
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
907
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
908
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
909
+  (0.1ms) SELECT version FROM "schema_migrations"
910
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
911
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
912
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
913
+  (0.1ms) select sqlite_version(*)
914
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
915
+  (0.1ms) SELECT sql
916
+ FROM sqlite_master
917
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
918
+ UNION ALL
919
+ SELECT sql
920
+ FROM sqlite_temp_master
921
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
922
+
923
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
924
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
925
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
926
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
927
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
928
+  (0.1ms) SELECT version FROM "schema_migrations"
929
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
930
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
931
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
932
+  (0.1ms) select sqlite_version(*)
933
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
934
+  (0.1ms) SELECT sql
935
+ FROM sqlite_master
936
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
937
+ UNION ALL
938
+ SELECT sql
939
+ FROM sqlite_temp_master
940
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
941
+
942
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
943
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
944
+  (1.0ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
945
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
946
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
947
+  (0.1ms) SELECT version FROM "schema_migrations"
948
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
949
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
950
+  (2.2ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
951
+  (0.1ms) select sqlite_version(*)
952
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
953
+  (0.1ms) SELECT sql
954
+ FROM sqlite_master
955
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
956
+ UNION ALL
957
+ SELECT sql
958
+ FROM sqlite_temp_master
959
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
960
+
961
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
962
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
963
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
964
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
965
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
966
+  (0.1ms) SELECT version FROM "schema_migrations"
967
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
968
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
969
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
970
+  (0.1ms) select sqlite_version(*)
971
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
972
+  (0.1ms) SELECT sql
973
+ FROM sqlite_master
974
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
975
+ UNION ALL
976
+ SELECT sql
977
+ FROM sqlite_temp_master
978
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
979
+
980
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
981
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
982
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
983
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
984
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
985
+  (0.1ms) SELECT version FROM "schema_migrations"
986
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
987
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
988
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
989
+  (0.1ms) select sqlite_version(*)
990
+  (1.2ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
991
+  (0.2ms) SELECT sql
992
+ FROM sqlite_master
993
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
994
+ UNION ALL
995
+ SELECT sql
996
+ FROM sqlite_temp_master
997
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
998
+
999
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1000
+  (1.1ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1001
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1002
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1003
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1004
+  (0.1ms) SELECT version FROM "schema_migrations"
1005
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1006
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1007
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1008
+  (0.1ms) select sqlite_version(*)
1009
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1010
+  (0.1ms) SELECT sql
1011
+ FROM sqlite_master
1012
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1013
+ UNION ALL
1014
+ SELECT sql
1015
+ FROM sqlite_temp_master
1016
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1017
+
1018
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1019
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1020
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1021
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1022
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1023
+  (0.1ms) SELECT version FROM "schema_migrations"
1024
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1025
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1026
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1027
+  (0.1ms) select sqlite_version(*)
1028
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1029
+  (0.1ms) SELECT sql
1030
+ FROM sqlite_master
1031
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1032
+ UNION ALL
1033
+ SELECT sql
1034
+ FROM sqlite_temp_master
1035
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1036
+
1037
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1038
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1039
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1040
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1041
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1042
+  (0.1ms) SELECT version FROM "schema_migrations"
1043
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1044
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1045
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1046
+  (0.1ms) select sqlite_version(*)
1047
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1048
+  (0.1ms) SELECT sql
1049
+ FROM sqlite_master
1050
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1051
+ UNION ALL
1052
+ SELECT sql
1053
+ FROM sqlite_temp_master
1054
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1055
+
1056
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1057
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1058
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1059
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1060
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1061
+  (0.1ms) SELECT version FROM "schema_migrations"
1062
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1063
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1064
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1065
+  (0.1ms) select sqlite_version(*)
1066
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1067
+  (0.1ms) SELECT sql
1068
+ FROM sqlite_master
1069
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1070
+ UNION ALL
1071
+ SELECT sql
1072
+ FROM sqlite_temp_master
1073
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1074
+
1075
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1076
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1077
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1078
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1079
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1080
+  (0.1ms) SELECT version FROM "schema_migrations"
1081
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1082
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1083
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1084
+  (0.1ms) select sqlite_version(*)
1085
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1086
+  (0.1ms) SELECT sql
1087
+ FROM sqlite_master
1088
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1089
+ UNION ALL
1090
+ SELECT sql
1091
+ FROM sqlite_temp_master
1092
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1093
+
1094
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1095
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1096
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1097
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1098
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1099
+  (0.1ms) SELECT version FROM "schema_migrations"
1100
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1101
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1102
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1103
+  (0.1ms) select sqlite_version(*)
1104
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1105
+  (0.1ms) SELECT sql
1106
+ FROM sqlite_master
1107
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1108
+ UNION ALL
1109
+ SELECT sql
1110
+ FROM sqlite_temp_master
1111
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1112
+
1113
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1114
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1115
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1116
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1117
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1118
+  (0.1ms) SELECT version FROM "schema_migrations"
1119
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1120
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1121
+  (2.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1122
+  (0.1ms) select sqlite_version(*)
1123
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1124
+  (0.1ms) SELECT sql
1125
+ FROM sqlite_master
1126
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1127
+ UNION ALL
1128
+ SELECT sql
1129
+ FROM sqlite_temp_master
1130
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1131
+
1132
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1133
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1134
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1135
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1136
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1137
+  (0.1ms) SELECT version FROM "schema_migrations"
1138
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1139
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1140
+  (2.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1141
+  (0.1ms) select sqlite_version(*)
1142
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1143
+  (0.1ms) SELECT sql
1144
+ FROM sqlite_master
1145
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1146
+ UNION ALL
1147
+ SELECT sql
1148
+ FROM sqlite_temp_master
1149
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1150
+
1151
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1152
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1153
+  (1.0ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1154
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1155
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1156
+  (0.1ms) SELECT version FROM "schema_migrations"
1157
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1158
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1159
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1160
+  (0.1ms) select sqlite_version(*)
1161
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1162
+  (0.1ms) SELECT sql
1163
+ FROM sqlite_master
1164
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1165
+ UNION ALL
1166
+ SELECT sql
1167
+ FROM sqlite_temp_master
1168
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1169
+
1170
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1171
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1172
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1173
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1174
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1175
+  (0.1ms) SELECT version FROM "schema_migrations"
1176
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1177
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1178
+  (1.2ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1179
+  (0.1ms) select sqlite_version(*)
1180
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1181
+  (0.2ms) SELECT sql
1182
+ FROM sqlite_master
1183
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1184
+ UNION ALL
1185
+ SELECT sql
1186
+ FROM sqlite_temp_master
1187
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1188
+
1189
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1190
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1191
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1192
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1193
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1194
+  (0.1ms) SELECT version FROM "schema_migrations"
1195
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1196
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1197
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1198
+  (0.1ms) select sqlite_version(*)
1199
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1200
+  (0.2ms) SELECT sql
1201
+ FROM sqlite_master
1202
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1203
+ UNION ALL
1204
+ SELECT sql
1205
+ FROM sqlite_temp_master
1206
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1207
+
1208
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1209
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1210
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1211
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1212
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1213
+  (0.1ms) SELECT version FROM "schema_migrations"
1214
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1215
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1216
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1217
+  (0.1ms) select sqlite_version(*)
1218
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1219
+  (0.1ms) SELECT sql
1220
+ FROM sqlite_master
1221
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1222
+ UNION ALL
1223
+ SELECT sql
1224
+ FROM sqlite_temp_master
1225
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1226
+
1227
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1228
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1229
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1230
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1231
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1232
+  (0.1ms) SELECT version FROM "schema_migrations"
1233
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1234
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1235
+  (2.4ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1236
+  (0.1ms) select sqlite_version(*)
1237
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1238
+  (0.1ms) SELECT sql
1239
+ FROM sqlite_master
1240
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1241
+ UNION ALL
1242
+ SELECT sql
1243
+ FROM sqlite_temp_master
1244
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1245
+
1246
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1247
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1248
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1249
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1250
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1251
+  (0.1ms) SELECT version FROM "schema_migrations"
1252
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1253
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1254
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1255
+  (0.1ms) select sqlite_version(*)
1256
+  (1.2ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1257
+  (0.2ms) SELECT sql
1258
+ FROM sqlite_master
1259
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1260
+ UNION ALL
1261
+ SELECT sql
1262
+ FROM sqlite_temp_master
1263
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1264
+
1265
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1266
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1267
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1268
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1269
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1270
+  (0.1ms) SELECT version FROM "schema_migrations"
1271
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1272
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1273
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1274
+  (0.1ms) select sqlite_version(*)
1275
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1276
+  (0.1ms) SELECT sql
1277
+ FROM sqlite_master
1278
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1279
+ UNION ALL
1280
+ SELECT sql
1281
+ FROM sqlite_temp_master
1282
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1283
+
1284
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1285
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1286
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1287
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1288
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1289
+  (0.1ms) SELECT version FROM "schema_migrations"
1290
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1291
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1292
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1293
+  (0.1ms) select sqlite_version(*)
1294
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1295
+  (0.2ms) SELECT sql
1296
+ FROM sqlite_master
1297
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1298
+ UNION ALL
1299
+ SELECT sql
1300
+ FROM sqlite_temp_master
1301
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1302
+
1303
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1304
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1305
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1306
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1307
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1308
+  (0.1ms) SELECT version FROM "schema_migrations"
1309
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1310
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1311
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1312
+  (0.1ms) select sqlite_version(*)
1313
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1314
+  (0.1ms) SELECT sql
1315
+ FROM sqlite_master
1316
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1317
+ UNION ALL
1318
+ SELECT sql
1319
+ FROM sqlite_temp_master
1320
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1321
+
1322
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1323
+  (0.6ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1324
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1325
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1326
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1327
+  (0.1ms) SELECT version FROM "schema_migrations"
1328
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1329
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1330
+  (2.3ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1331
+  (0.1ms) select sqlite_version(*)
1332
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1333
+  (0.1ms) SELECT sql
1334
+ FROM sqlite_master
1335
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1336
+ UNION ALL
1337
+ SELECT sql
1338
+ FROM sqlite_temp_master
1339
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1340
+
1341
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1342
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1343
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1344
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1345
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1346
+  (0.1ms) SELECT version FROM "schema_migrations"
1347
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1348
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1349
+  (2.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1350
+  (0.1ms) select sqlite_version(*)
1351
+  (1.2ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1352
+  (0.1ms) SELECT sql
1353
+ FROM sqlite_master
1354
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1355
+ UNION ALL
1356
+ SELECT sql
1357
+ FROM sqlite_temp_master
1358
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1359
+
1360
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1361
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1362
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1363
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1364
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1365
+  (0.1ms) SELECT version FROM "schema_migrations"
1366
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1367
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1368
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1369
+  (0.1ms) select sqlite_version(*)
1370
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1371
+  (0.1ms) SELECT sql
1372
+ FROM sqlite_master
1373
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1374
+ UNION ALL
1375
+ SELECT sql
1376
+ FROM sqlite_temp_master
1377
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1378
+
1379
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1380
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1381
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1382
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1383
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1384
+  (0.1ms) SELECT version FROM "schema_migrations"
1385
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1386
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1387
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1388
+  (0.1ms) select sqlite_version(*)
1389
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1390
+  (0.1ms) SELECT sql
1391
+ FROM sqlite_master
1392
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1393
+ UNION ALL
1394
+ SELECT sql
1395
+ FROM sqlite_temp_master
1396
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1397
+
1398
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1399
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1400
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1401
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1402
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1403
+  (0.1ms) SELECT version FROM "schema_migrations"
1404
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1405
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1406
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1407
+  (0.1ms) select sqlite_version(*)
1408
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1409
+  (0.2ms) SELECT sql
1410
+ FROM sqlite_master
1411
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1412
+ UNION ALL
1413
+ SELECT sql
1414
+ FROM sqlite_temp_master
1415
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1416
+
1417
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1418
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1419
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1420
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1421
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1422
+  (0.1ms) SELECT version FROM "schema_migrations"
1423
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1424
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1425
+  (2.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1426
+  (0.1ms) select sqlite_version(*)
1427
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1428
+  (0.1ms) SELECT sql
1429
+ FROM sqlite_master
1430
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1431
+ UNION ALL
1432
+ SELECT sql
1433
+ FROM sqlite_temp_master
1434
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1435
+
1436
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1437
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1438
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1439
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1440
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1441
+  (0.1ms) SELECT version FROM "schema_migrations"
1442
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1443
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1444
+  (2.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1445
+  (0.1ms) select sqlite_version(*)
1446
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1447
+  (0.1ms) SELECT sql
1448
+ FROM sqlite_master
1449
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1450
+ UNION ALL
1451
+ SELECT sql
1452
+ FROM sqlite_temp_master
1453
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1454
+
1455
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1456
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1457
+  (1.0ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1458
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1459
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1460
+  (0.1ms) SELECT version FROM "schema_migrations"
1461
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1462
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1463
+  (2.2ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1464
+  (0.1ms) select sqlite_version(*)
1465
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1466
+  (0.2ms) SELECT sql
1467
+ FROM sqlite_master
1468
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1469
+ UNION ALL
1470
+ SELECT sql
1471
+ FROM sqlite_temp_master
1472
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1473
+
1474
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1475
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1476
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1477
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1478
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1479
+  (0.1ms) SELECT version FROM "schema_migrations"
1480
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1481
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1482
+  (2.5ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1483
+  (0.1ms) select sqlite_version(*)
1484
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1485
+  (0.2ms) SELECT sql
1486
+ FROM sqlite_master
1487
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1488
+ UNION ALL
1489
+ SELECT sql
1490
+ FROM sqlite_temp_master
1491
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1492
+
1493
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1494
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1495
+  (1.0ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1496
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1497
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1498
+  (0.1ms) SELECT version FROM "schema_migrations"
1499
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1500
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1501
+  (2.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1502
+  (0.1ms) select sqlite_version(*)
1503
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1504
+  (0.1ms) SELECT sql
1505
+ FROM sqlite_master
1506
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1507
+ UNION ALL
1508
+ SELECT sql
1509
+ FROM sqlite_temp_master
1510
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1511
+
1512
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1513
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1514
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1515
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1516
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1517
+  (0.1ms) SELECT version FROM "schema_migrations"
1518
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1519
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1520
+  (2.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1521
+  (0.1ms) select sqlite_version(*)
1522
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1523
+  (0.1ms) SELECT sql
1524
+ FROM sqlite_master
1525
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1526
+ UNION ALL
1527
+ SELECT sql
1528
+ FROM sqlite_temp_master
1529
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1530
+
1531
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1532
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1533
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1534
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1535
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1536
+  (0.1ms) SELECT version FROM "schema_migrations"
1537
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1538
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1539
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1540
+  (0.1ms) select sqlite_version(*)
1541
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1542
+  (0.1ms) SELECT sql
1543
+ FROM sqlite_master
1544
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1545
+ UNION ALL
1546
+ SELECT sql
1547
+ FROM sqlite_temp_master
1548
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1549
+
1550
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1551
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1552
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1553
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1554
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1555
+  (0.1ms) SELECT version FROM "schema_migrations"
1556
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1557
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1558
+  (2.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1559
+  (0.1ms) select sqlite_version(*)
1560
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1561
+  (0.1ms) SELECT sql
1562
+ FROM sqlite_master
1563
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1564
+ UNION ALL
1565
+ SELECT sql
1566
+ FROM sqlite_temp_master
1567
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1568
+
1569
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1570
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1571
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1572
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1573
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1574
+  (0.1ms) SELECT version FROM "schema_migrations"
1575
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1576
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1577
+  (2.6ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime) 
1578
+  (0.1ms) select sqlite_version(*)
1579
+  (1.2ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1580
+  (0.2ms) SELECT sql
1581
+ FROM sqlite_master
1582
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1583
+ UNION ALL
1584
+ SELECT sql
1585
+ FROM sqlite_temp_master
1586
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1587
+
1588
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1589
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime)
1590
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1591
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1592
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1593
+  (0.1ms) SELECT version FROM "schema_migrations"
1594
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1595
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1596
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1597
+ Migrating to CreateUsers (20140309200402)
1598
+  (0.1ms) begin transaction
1599
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1600
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140309200402"]]
1601
+  (2.1ms) commit transaction
1602
+ Migrating to CreateArticles (20140309200453)
1603
+  (0.1ms) begin transaction
1604
+  (0.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1605
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140309200453"]]
1606
+  (0.7ms) commit transaction
1607
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1608
+  (0.1ms)  SELECT sql
1609
+ FROM sqlite_master
1610
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1611
+ UNION ALL
1612
+ SELECT sql
1613
+ FROM sqlite_temp_master
1614
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1615
+ 
1616
+  (0.1ms) SELECT sql
1617
+ FROM sqlite_master
1618
+ WHERE name='index_gamification_scorings_on_task_id' AND type='index'
1619
+ UNION ALL
1620
+ SELECT sql
1621
+ FROM sqlite_temp_master
1622
+ WHERE name='index_gamification_scorings_on_task_id' AND type='index'
1623
+
1624
+  (0.1ms)  SELECT sql
1625
+ FROM sqlite_master
1626
+ WHERE name='index_gamification_tasks_on_taskable_id_and_taskable_type' AND type='index'
1627
+ UNION ALL
1628
+ SELECT sql
1629
+ FROM sqlite_temp_master
1630
+ WHERE name='index_gamification_tasks_on_taskable_id_and_taskable_type' AND type='index'
1631
+ 
1632
+  (2.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1633
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1634
+  (0.1ms) select sqlite_version(*)
1635
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1636
+  (0.1ms)  SELECT sql
1637
+ FROM sqlite_master
1638
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1639
+ UNION ALL
1640
+ SELECT sql
1641
+ FROM sqlite_temp_master
1642
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1643
+ 
1644
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1645
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1646
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1647
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1648
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1649
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1650
+  (0.1ms) SELECT version FROM "schema_migrations"
1651
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1652
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1653
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1654
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1655
+  (2.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1656
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1657
+  (0.1ms) select sqlite_version(*)
1658
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1659
+  (0.1ms)  SELECT sql
1660
+ FROM sqlite_master
1661
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1662
+ UNION ALL
1663
+ SELECT sql
1664
+ FROM sqlite_temp_master
1665
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1666
+ 
1667
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1668
+  (1.0ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1669
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1670
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1671
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1672
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1673
+  (0.1ms) SELECT version FROM "schema_migrations"
1674
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1675
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1676
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1677
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1678
+  (2.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1679
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1680
+  (0.1ms) select sqlite_version(*)
1681
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1682
+  (0.1ms)  SELECT sql
1683
+ FROM sqlite_master
1684
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1685
+ UNION ALL
1686
+ SELECT sql
1687
+ FROM sqlite_temp_master
1688
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1689
+ 
1690
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1691
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1692
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1693
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1694
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1695
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1696
+  (0.1ms) SELECT version FROM "schema_migrations"
1697
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1698
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1699
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1700
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1701
+  (2.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1702
+  (1.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1703
+  (0.1ms) select sqlite_version(*)
1704
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1705
+  (0.1ms)  SELECT sql
1706
+ FROM sqlite_master
1707
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1708
+ UNION ALL
1709
+ SELECT sql
1710
+ FROM sqlite_temp_master
1711
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1712
+ 
1713
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1714
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1715
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1716
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1717
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1718
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1719
+  (0.1ms) SELECT version FROM "schema_migrations"
1720
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1721
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1722
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1723
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1724
+  (2.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1725
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1726
+  (0.1ms) select sqlite_version(*)
1727
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1728
+  (0.1ms)  SELECT sql
1729
+ FROM sqlite_master
1730
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1731
+ UNION ALL
1732
+ SELECT sql
1733
+ FROM sqlite_temp_master
1734
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1735
+ 
1736
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1737
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1738
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1739
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1740
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1741
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1742
+  (0.1ms) SELECT version FROM "schema_migrations"
1743
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1744
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1745
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1746
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1747
+  (2.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1748
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1749
+  (0.1ms) select sqlite_version(*)
1750
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1751
+  (0.1ms)  SELECT sql
1752
+ FROM sqlite_master
1753
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1754
+ UNION ALL
1755
+ SELECT sql
1756
+ FROM sqlite_temp_master
1757
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1758
+ 
1759
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1760
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1761
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1762
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1763
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1764
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1765
+  (0.1ms) SELECT version FROM "schema_migrations"
1766
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1767
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1768
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1769
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1770
+  (2.9ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1771
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1772
+  (0.1ms) select sqlite_version(*)
1773
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1774
+  (0.1ms)  SELECT sql
1775
+ FROM sqlite_master
1776
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1777
+ UNION ALL
1778
+ SELECT sql
1779
+ FROM sqlite_temp_master
1780
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1781
+ 
1782
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1783
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1784
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1785
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1786
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1787
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1788
+  (0.1ms) SELECT version FROM "schema_migrations"
1789
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1790
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1791
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1792
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1793
+  (3.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1794
+  (1.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1795
+  (0.1ms) select sqlite_version(*)
1796
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1797
+  (0.1ms)  SELECT sql
1798
+ FROM sqlite_master
1799
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1800
+ UNION ALL
1801
+ SELECT sql
1802
+ FROM sqlite_temp_master
1803
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1804
+ 
1805
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1806
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1807
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1808
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1809
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1810
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1811
+  (0.1ms) SELECT version FROM "schema_migrations"
1812
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1813
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1814
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1815
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1816
+ User Load (0.9ms) SELECT "users".* FROM "users"
1817
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."name" = 'foo' LIMIT 1
1818
+ SQLite3::SQLException: no such column: users.name: SELECT "users".* FROM "users" WHERE "users"."name" = 'foo' LIMIT 1
1819
+  (2.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1820
+  (1.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1821
+  (0.1ms) select sqlite_version(*)
1822
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1823
+  (0.1ms)  SELECT sql
1824
+ FROM sqlite_master
1825
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1826
+ UNION ALL
1827
+ SELECT sql
1828
+ FROM sqlite_temp_master
1829
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1830
+ 
1831
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1832
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1833
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1834
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1835
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1836
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1837
+  (0.1ms) SELECT version FROM "schema_migrations"
1838
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1839
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1840
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1841
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1842
+  (2.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1843
+  (1.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1844
+  (0.1ms) select sqlite_version(*)
1845
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1846
+  (0.1ms)  SELECT sql
1847
+ FROM sqlite_master
1848
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1849
+ UNION ALL
1850
+ SELECT sql
1851
+ FROM sqlite_temp_master
1852
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1853
+ 
1854
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1855
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1856
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1857
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1858
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1859
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1860
+  (0.1ms) SELECT version FROM "schema_migrations"
1861
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1862
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1863
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1864
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1865
+  (2.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1866
+  (0.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1867
+  (0.1ms) select sqlite_version(*)
1868
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1869
+  (0.1ms)  SELECT sql
1870
+ FROM sqlite_master
1871
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1872
+ UNION ALL
1873
+ SELECT sql
1874
+ FROM sqlite_temp_master
1875
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1876
+ 
1877
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1878
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1879
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1880
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1881
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1882
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1883
+  (0.1ms) SELECT version FROM "schema_migrations"
1884
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1885
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1886
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1887
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1888
+  (2.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1889
+  (1.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1890
+  (0.1ms) select sqlite_version(*)
1891
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1892
+  (0.1ms)  SELECT sql
1893
+ FROM sqlite_master
1894
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1895
+ UNION ALL
1896
+ SELECT sql
1897
+ FROM sqlite_temp_master
1898
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1899
+ 
1900
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1901
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1902
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1903
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1904
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1905
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1906
+  (0.1ms) SELECT version FROM "schema_migrations"
1907
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1908
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1909
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1910
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1911
+  (9.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1912
+  (1.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1913
+  (0.1ms) select sqlite_version(*)
1914
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1915
+  (0.1ms)  SELECT sql
1916
+ FROM sqlite_master
1917
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1918
+ UNION ALL
1919
+ SELECT sql
1920
+ FROM sqlite_temp_master
1921
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1922
+ 
1923
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1924
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1925
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1926
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1927
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1928
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1929
+  (0.1ms) SELECT version FROM "schema_migrations"
1930
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1931
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1932
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1933
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1934
+  (2.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1935
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1936
+  (0.1ms) select sqlite_version(*)
1937
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1938
+  (0.1ms)  SELECT sql
1939
+ FROM sqlite_master
1940
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1941
+ UNION ALL
1942
+ SELECT sql
1943
+ FROM sqlite_temp_master
1944
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1945
+ 
1946
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1947
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1948
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1949
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1950
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1951
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1952
+  (0.1ms) SELECT version FROM "schema_migrations"
1953
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1954
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1955
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1956
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1957
+  (2.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1958
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1959
+  (0.1ms) select sqlite_version(*)
1960
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1961
+  (0.1ms)  SELECT sql
1962
+ FROM sqlite_master
1963
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1964
+ UNION ALL
1965
+ SELECT sql
1966
+ FROM sqlite_temp_master
1967
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1968
+ 
1969
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1970
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1971
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1972
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1973
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1974
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1975
+  (0.1ms) SELECT version FROM "schema_migrations"
1976
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
1977
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
1978
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
1979
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
1980
+  (2.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1981
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
1982
+  (0.1ms) select sqlite_version(*)
1983
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
1984
+  (0.1ms)  SELECT sql
1985
+ FROM sqlite_master
1986
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1987
+ UNION ALL
1988
+ SELECT sql
1989
+ FROM sqlite_temp_master
1990
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
1991
+ 
1992
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
1993
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
1994
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
1995
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
1996
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1997
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1998
+  (0.1ms) SELECT version FROM "schema_migrations"
1999
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2000
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2001
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2002
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2003
+  (2.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2004
+  (1.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2005
+  (0.1ms) select sqlite_version(*)
2006
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2007
+  (0.1ms)  SELECT sql
2008
+ FROM sqlite_master
2009
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2010
+ UNION ALL
2011
+ SELECT sql
2012
+ FROM sqlite_temp_master
2013
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2014
+ 
2015
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2016
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2017
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2018
+  (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2019
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2020
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2021
+  (0.1ms) SELECT version FROM "schema_migrations"
2022
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2023
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2024
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2025
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2026
+  (2.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2027
+  (1.3ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2028
+  (0.1ms) select sqlite_version(*)
2029
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2030
+  (0.1ms)  SELECT sql
2031
+ FROM sqlite_master
2032
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2033
+ UNION ALL
2034
+ SELECT sql
2035
+ FROM sqlite_temp_master
2036
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2037
+ 
2038
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2039
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2040
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2041
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2042
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2043
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2044
+  (0.1ms) SELECT version FROM "schema_migrations"
2045
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2046
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2047
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2048
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2049
+  (2.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2050
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2051
+  (0.1ms) select sqlite_version(*)
2052
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2053
+  (0.2ms)  SELECT sql
2054
+ FROM sqlite_master
2055
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2056
+ UNION ALL
2057
+ SELECT sql
2058
+ FROM sqlite_temp_master
2059
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2060
+ 
2061
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2062
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2063
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2064
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2065
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2066
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2067
+  (0.1ms) SELECT version FROM "schema_migrations"
2068
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2069
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2070
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2071
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2072
+  (2.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2073
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2074
+  (0.1ms) select sqlite_version(*)
2075
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2076
+  (0.1ms)  SELECT sql
2077
+ FROM sqlite_master
2078
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2079
+ UNION ALL
2080
+ SELECT sql
2081
+ FROM sqlite_temp_master
2082
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2083
+ 
2084
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2085
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2086
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2087
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2088
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2089
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2090
+  (0.1ms) SELECT version FROM "schema_migrations"
2091
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2092
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2093
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2094
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2095
+ Gamification::Task Load (1.3ms) SELECT "gamification_tasks".* FROM "gamification_tasks"
2096
+ Gamification::Task Load (0.2ms) SELECT "gamification_tasks".* FROM "gamification_tasks"
2097
+ Gamification::Task Load (0.3ms) SELECT "gamification_tasks".* FROM "gamification_tasks" WHERE (scorable.subject_id)
2098
+ SQLite3::SQLException: no such column: scorable.subject_id: SELECT "gamification_tasks".* FROM "gamification_tasks" WHERE (scorable.subject_id)
2099
+ Gamification::Task Load (0.2ms) SELECT "gamification_tasks".* FROM "gamification_tasks" WHERE (scorable.subjectable_id)
2100
+ SQLite3::SQLException: no such column: scorable.subjectable_id: SELECT "gamification_tasks".* FROM "gamification_tasks" WHERE (scorable.subjectable_id)
2101
+ Gamification::Task Load (0.2ms) SELECT "gamification_tasks".* FROM "gamification_tasks" WHERE (scorings.subjectable_id)
2102
+ SQLite3::SQLException: no such column: scorings.subjectable_id: SELECT "gamification_tasks".* FROM "gamification_tasks" WHERE (scorings.subjectable_id)
2103
+ Gamification::Task Load (0.2ms) SELECT "gamification_tasks".* FROM "gamification_tasks" WHERE (gamification_scorings.subjectable_id)
2104
+ SQLite3::SQLException: no such column: gamification_scorings.subjectable_id: SELECT "gamification_tasks".* FROM "gamification_tasks" WHERE (gamification_scorings.subjectable_id)
2105
+ Gamification::Task Load (0.2ms) SELECT "gamification_tasks".* FROM "gamification_tasks"
2106
+ Gamification::Task Load (0.1ms) SELECT "gamification_tasks".* FROM "gamification_tasks" INNER JOIN "gamification_scorings" ON "gamification_scorings"."task_id" = "gamification_tasks"."id"
2107
+ Gamification::Task Load (0.2ms) SELECT "gamification_tasks".* FROM "gamification_tasks"
2108
+ Gamification::Task Load (0.2ms) SELECT "gamification_tasks".* FROM "gamification_tasks" LEFT OUTER JOIN scorings
2109
+ SQLite3::SQLException: no such table: scorings: SELECT "gamification_tasks".* FROM "gamification_tasks" LEFT OUTER JOIN scorings
2110
+ Gamification::Task Load (0.2ms) SELECT "gamification_tasks".* FROM "gamification_tasks" LEFT OUTER JOIN gamification_scorings
2111
+  (1.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2112
+  (1.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2113
+  (0.1ms) select sqlite_version(*)
2114
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2115
+  (0.1ms)  SELECT sql
2116
+ FROM sqlite_master
2117
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2118
+ UNION ALL
2119
+ SELECT sql
2120
+ FROM sqlite_temp_master
2121
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2122
+ 
2123
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2124
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2125
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2126
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2127
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2128
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2129
+  (0.1ms) SELECT version FROM "schema_migrations"
2130
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2131
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2132
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2133
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2134
+  (2.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2135
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2136
+  (0.1ms) select sqlite_version(*)
2137
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2138
+  (0.1ms)  SELECT sql
2139
+ FROM sqlite_master
2140
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2141
+ UNION ALL
2142
+ SELECT sql
2143
+ FROM sqlite_temp_master
2144
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2145
+ 
2146
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2147
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2148
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2149
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2150
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2151
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2152
+  (0.1ms) SELECT version FROM "schema_migrations"
2153
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2154
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2155
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2156
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2157
+  (1.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2158
+  (0.7ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2159
+  (0.1ms) select sqlite_version(*)
2160
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2161
+  (0.2ms)  SELECT sql
2162
+ FROM sqlite_master
2163
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2164
+ UNION ALL
2165
+ SELECT sql
2166
+ FROM sqlite_temp_master
2167
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2168
+ 
2169
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2170
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2171
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2172
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2173
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2174
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2175
+  (0.1ms) SELECT version FROM "schema_migrations"
2176
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2177
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2178
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2179
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2180
+  (2.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2181
+  (1.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2182
+  (0.1ms) select sqlite_version(*)
2183
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2184
+  (0.1ms)  SELECT sql
2185
+ FROM sqlite_master
2186
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2187
+ UNION ALL
2188
+ SELECT sql
2189
+ FROM sqlite_temp_master
2190
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2191
+ 
2192
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2193
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2194
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2195
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2196
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2197
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2198
+  (0.1ms) SELECT version FROM "schema_migrations"
2199
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2200
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2201
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2202
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2203
+  (2.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2204
+  (0.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2205
+  (0.1ms) select sqlite_version(*)
2206
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2207
+  (0.1ms)  SELECT sql
2208
+ FROM sqlite_master
2209
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2210
+ UNION ALL
2211
+ SELECT sql
2212
+ FROM sqlite_temp_master
2213
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2214
+ 
2215
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2216
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2217
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2218
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2219
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2220
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2221
+  (0.1ms) SELECT version FROM "schema_migrations"
2222
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2223
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2224
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2225
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2226
+  (2.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2227
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2228
+  (0.1ms) select sqlite_version(*)
2229
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2230
+  (0.1ms)  SELECT sql
2231
+ FROM sqlite_master
2232
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2233
+ UNION ALL
2234
+ SELECT sql
2235
+ FROM sqlite_temp_master
2236
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2237
+ 
2238
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2239
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2240
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2241
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2242
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2243
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2244
+  (0.1ms) SELECT version FROM "schema_migrations"
2245
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2246
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2247
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2248
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2249
+  (3.1ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2250
+  (1.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2251
+  (0.1ms) select sqlite_version(*)
2252
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2253
+  (0.1ms)  SELECT sql
2254
+ FROM sqlite_master
2255
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2256
+ UNION ALL
2257
+ SELECT sql
2258
+ FROM sqlite_temp_master
2259
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2260
+ 
2261
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2262
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2263
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2264
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2265
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2266
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2267
+  (0.1ms) SELECT version FROM "schema_migrations"
2268
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2269
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2270
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2271
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2272
+  (2.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2273
+  (1.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2274
+  (0.1ms) select sqlite_version(*)
2275
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2276
+  (0.1ms)  SELECT sql
2277
+ FROM sqlite_master
2278
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2279
+ UNION ALL
2280
+ SELECT sql
2281
+ FROM sqlite_temp_master
2282
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2283
+ 
2284
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2285
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2286
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2287
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2288
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2289
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2290
+  (0.1ms) SELECT version FROM "schema_migrations"
2291
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2292
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2293
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2294
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2295
+  (2.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2296
+  (0.8ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2297
+  (0.1ms) select sqlite_version(*)
2298
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2299
+  (0.1ms)  SELECT sql
2300
+ FROM sqlite_master
2301
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2302
+ UNION ALL
2303
+ SELECT sql
2304
+ FROM sqlite_temp_master
2305
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2306
+ 
2307
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2308
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2309
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2310
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2311
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2312
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2313
+  (0.1ms) SELECT version FROM "schema_migrations"
2314
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2315
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2316
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2317
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2318
+  (2.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2319
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2320
+  (0.1ms) select sqlite_version(*)
2321
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2322
+  (0.1ms)  SELECT sql
2323
+ FROM sqlite_master
2324
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2325
+ UNION ALL
2326
+ SELECT sql
2327
+ FROM sqlite_temp_master
2328
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2329
+ 
2330
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2331
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2332
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2333
+  (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2334
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2335
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2336
+  (0.1ms) SELECT version FROM "schema_migrations"
2337
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2338
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2339
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2340
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2341
+  (2.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2342
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2343
+  (0.1ms) select sqlite_version(*)
2344
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2345
+  (0.1ms)  SELECT sql
2346
+ FROM sqlite_master
2347
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2348
+ UNION ALL
2349
+ SELECT sql
2350
+ FROM sqlite_temp_master
2351
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2352
+ 
2353
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2354
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2355
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2356
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2357
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2358
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2359
+  (0.1ms) SELECT version FROM "schema_migrations"
2360
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2361
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2362
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2363
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2364
+  (2.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2365
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2366
+  (0.1ms) select sqlite_version(*)
2367
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2368
+  (0.1ms)  SELECT sql
2369
+ FROM sqlite_master
2370
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2371
+ UNION ALL
2372
+ SELECT sql
2373
+ FROM sqlite_temp_master
2374
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2375
+ 
2376
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2377
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2378
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2379
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2380
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2381
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2382
+  (0.1ms) SELECT version FROM "schema_migrations"
2383
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2384
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2385
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2386
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2387
+  (2.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2388
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2389
+  (0.1ms) select sqlite_version(*)
2390
+  (1.1ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2391
+  (0.2ms)  SELECT sql
2392
+ FROM sqlite_master
2393
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2394
+ UNION ALL
2395
+ SELECT sql
2396
+ FROM sqlite_temp_master
2397
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2398
+ 
2399
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2400
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2401
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2402
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2403
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2404
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2405
+  (0.1ms) SELECT version FROM "schema_migrations"
2406
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2407
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2408
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2409
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2410
+  (2.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2411
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2412
+  (0.1ms) select sqlite_version(*)
2413
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2414
+  (0.1ms)  SELECT sql
2415
+ FROM sqlite_master
2416
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2417
+ UNION ALL
2418
+ SELECT sql
2419
+ FROM sqlite_temp_master
2420
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2421
+ 
2422
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2423
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2424
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2425
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2426
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2427
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2428
+  (0.1ms) SELECT version FROM "schema_migrations"
2429
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2430
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2431
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2432
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2433
+  (2.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2434
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2435
+  (0.1ms) select sqlite_version(*)
2436
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2437
+  (0.1ms)  SELECT sql
2438
+ FROM sqlite_master
2439
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2440
+ UNION ALL
2441
+ SELECT sql
2442
+ FROM sqlite_temp_master
2443
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2444
+ 
2445
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2446
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2447
+  (0.7ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2448
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2449
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2450
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2451
+  (0.1ms) SELECT version FROM "schema_migrations"
2452
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2453
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2454
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2455
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2456
+  (2.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2457
+  (0.9ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2458
+  (0.1ms) select sqlite_version(*)
2459
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2460
+  (0.2ms)  SELECT sql
2461
+ FROM sqlite_master
2462
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2463
+ UNION ALL
2464
+ SELECT sql
2465
+ FROM sqlite_temp_master
2466
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2467
+ 
2468
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2469
+  (0.9ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2470
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2471
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2472
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2473
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2474
+  (0.1ms) SELECT version FROM "schema_migrations"
2475
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2476
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2477
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2478
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2479
+  (2.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2480
+  (1.3ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2481
+  (0.1ms) select sqlite_version(*)
2482
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2483
+  (0.2ms)  SELECT sql
2484
+ FROM sqlite_master
2485
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2486
+ UNION ALL
2487
+ SELECT sql
2488
+ FROM sqlite_temp_master
2489
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2490
+ 
2491
+  (0.8ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2492
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2493
+  (0.9ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2494
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2495
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2496
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2497
+  (0.1ms) SELECT version FROM "schema_migrations"
2498
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2499
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2500
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2501
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2502
+  (2.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2503
+  (1.1ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2504
+  (0.1ms) select sqlite_version(*)
2505
+  (1.0ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2506
+  (0.1ms)  SELECT sql
2507
+ FROM sqlite_master
2508
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2509
+ UNION ALL
2510
+ SELECT sql
2511
+ FROM sqlite_temp_master
2512
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2513
+ 
2514
+  (0.9ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2515
+  (0.8ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2516
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2517
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2518
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2519
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2520
+  (0.1ms) SELECT version FROM "schema_migrations"
2521
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2522
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2523
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2524
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')
2525
+  (2.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2526
+  (1.0ms) CREATE TABLE "gamification_scorings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "subjectable_id" integer, "subjectable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
2527
+  (0.1ms) select sqlite_version(*)
2528
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_subjectable" ON "gamification_scorings" ("subjectable_id", "subjectable_type")
2529
+  (0.1ms)  SELECT sql
2530
+ FROM sqlite_master
2531
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2532
+ UNION ALL
2533
+ SELECT sql
2534
+ FROM sqlite_temp_master
2535
+ WHERE name='index_gamification_scorings_on_subjectable' AND type='index'
2536
+ 
2537
+  (0.7ms) CREATE INDEX "index_gamification_scorings_on_task_id" ON "gamification_scorings" ("task_id")
2538
+  (0.7ms) CREATE TABLE "gamification_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "taskable_id" integer, "taskable_type" varchar(255), "points" integer, "created_at" datetime, "updated_at" datetime) 
2539
+  (0.8ms) CREATE INDEX "index_gamification_tasks_on_taskable_id_and_taskable_type" ON "gamification_tasks" ("taskable_id", "taskable_type")
2540
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2541
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2542
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2543
+  (0.1ms) SELECT version FROM "schema_migrations"
2544
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200453')
2545
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309200402')
2546
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309173049')
2547
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140309175957')