masked-identifier 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.txt +53 -0
- data/Rakefile +37 -0
- data/lib/code-generator.rb +51 -0
- data/lib/masked-identifier.rb +56 -0
- data/lib/tasks/masked-identifier_tasks.rake +4 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +9 -0
- data/test/dummy/app/assets/stylesheets/application.css +7 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/user.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +42 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +27 -0
- data/test/dummy/config/environments/production.rb +51 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +12 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20110731204706_create_users.rb +10 -0
- data/test/dummy/db/schema.rb +24 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +66 -0
- data/test/dummy/log/test.log +229 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/users.yml +7 -0
- data/test/dummy/test/unit/user_test.rb +7 -0
- data/test/masked-identifier_test.rb +46 -0
- data/test/test_helper.rb +10 -0
- metadata +135 -0
@@ -0,0 +1,39 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
11
|
+
config.serve_static_assets = true
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
13
|
+
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
15
|
+
config.whiny_nils = true
|
16
|
+
|
17
|
+
# Show full error reports and disable caching
|
18
|
+
config.consider_all_requests_local = true
|
19
|
+
config.action_controller.perform_caching = false
|
20
|
+
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
22
|
+
config.action_dispatch.show_exceptions = false
|
23
|
+
|
24
|
+
# Disable request forgery protection in test environment
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
|
+
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
29
|
+
# ActionMailer::Base.deliveries array.
|
30
|
+
config.action_mailer.delivery_method = :test
|
31
|
+
|
32
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
33
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
34
|
+
# like if you have constraints or database-specific column types
|
35
|
+
# config.active_record.schema_format = :sql
|
36
|
+
|
37
|
+
# Print deprecation notices to the stderr
|
38
|
+
config.active_support.deprecation = :stderr
|
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,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '0a383aca36175463da2687b035b416021c7e8aec50f07863402c4d9f3519d8042cfd40f15ca0506b7065ff65cadb7c970a1740a7aeb535771078b573be6e63ea'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,12 @@
|
|
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
|
+
ActionController::Base.wrap_parameters format: [:json]
|
8
|
+
|
9
|
+
# Disable root element in JSON by default.
|
10
|
+
if defined?(ActiveRecord)
|
11
|
+
ActiveRecord::Base.include_root_in_json = false
|
12
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
# The priority is based upon order of creation:
|
3
|
+
# first created -> highest priority.
|
4
|
+
|
5
|
+
# Sample of regular route:
|
6
|
+
# match 'products/:id' => 'catalog#view'
|
7
|
+
# Keep in mind you can assign values other than :controller and :action
|
8
|
+
|
9
|
+
# Sample of named route:
|
10
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
11
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
12
|
+
|
13
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
14
|
+
# resources :products
|
15
|
+
|
16
|
+
# Sample resource route with options:
|
17
|
+
# resources :products do
|
18
|
+
# member do
|
19
|
+
# get 'short'
|
20
|
+
# post 'toggle'
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# collection do
|
24
|
+
# get 'sold'
|
25
|
+
# end
|
26
|
+
# end
|
27
|
+
|
28
|
+
# Sample resource route with sub-resources:
|
29
|
+
# resources :products do
|
30
|
+
# resources :comments, :sales
|
31
|
+
# resource :seller
|
32
|
+
# end
|
33
|
+
|
34
|
+
# Sample resource route with more complex sub-resources
|
35
|
+
# resources :products do
|
36
|
+
# resources :comments
|
37
|
+
# resources :sales do
|
38
|
+
# get 'recent', :on => :collection
|
39
|
+
# end
|
40
|
+
# end
|
41
|
+
|
42
|
+
# Sample resource route within a namespace:
|
43
|
+
# namespace :admin do
|
44
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
45
|
+
# # (app/controllers/admin/products_controller.rb)
|
46
|
+
# resources :products
|
47
|
+
# end
|
48
|
+
|
49
|
+
# You can have the root of your site routed with "root"
|
50
|
+
# just remember to delete public/index.html.
|
51
|
+
# root :to => 'welcome#index'
|
52
|
+
|
53
|
+
# See how all your routes lay out with "rake routes"
|
54
|
+
|
55
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
56
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
57
|
+
# match ':controller(/:action(/:id(.:format)))'
|
58
|
+
end
|
Binary file
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# This file is auto-generated from the current state of the database. Instead
|
2
|
+
# of editing this file, please use the migrations feature of Active Record to
|
3
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
4
|
+
#
|
5
|
+
# Note that this schema.rb definition is the authoritative source for your
|
6
|
+
# database schema. If you need to create the application database on another
|
7
|
+
# system, you should be using db:schema:load, not running all the migrations
|
8
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
9
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
10
|
+
#
|
11
|
+
# It's strongly recommended to check this file into your version control system.
|
12
|
+
|
13
|
+
ActiveRecord::Schema.define(:version => 20110731204706) do
|
14
|
+
|
15
|
+
create_table "users", :force => true do |t|
|
16
|
+
t.string "masked_identifier"
|
17
|
+
t.string "mid"
|
18
|
+
t.datetime "created_at"
|
19
|
+
t.datetime "updated_at"
|
20
|
+
end
|
21
|
+
|
22
|
+
add_index "users", ["masked_identifier"], :name => "index_users_on_masked_identifier"
|
23
|
+
|
24
|
+
end
|
Binary file
|
@@ -0,0 +1,66 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
4
|
+
[1m[35m (2.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6
|
+
Migrating to CreateUsers (20110731204706)
|
7
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "masked_identifier" varchar(255), "created_at" datetime, "updated_at" datetime)
|
8
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
9
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_users_on_masked_identifier" ON "users" ("masked_identifier")
|
10
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110731204706')[0m
|
11
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
12
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
13
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
14
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_masked_identifier')[0m
|
15
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
16
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
17
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "masked_identifier" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
18
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("users")
|
19
|
+
[1m[36m (2.2ms)[0m [1mCREATE INDEX "index_users_on_masked_identifier" ON "users" ("masked_identifier")[0m
|
20
|
+
[1m[35m (2.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
21
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
22
|
+
[1m[35m (2.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
23
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
24
|
+
[1m[35m (2.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110731204706')
|
25
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
26
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
27
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "masked_identifier" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
28
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
29
|
+
[1m[36m (2.3ms)[0m [1mCREATE INDEX "index_users_on_masked_identifier" ON "users" ("masked_identifier")[0m
|
30
|
+
[1m[35m (4.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
31
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
32
|
+
[1m[35m (3.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
33
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
34
|
+
[1m[35m (4.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110731204706')
|
35
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
36
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
37
|
+
Migrating to CreateUsers (20110731204706)
|
38
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
39
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("users")
|
40
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_masked_identifier')[0m
|
41
|
+
[1m[35m (0.8ms)[0m DROP INDEX "index_users_on_masked_identifier"
|
42
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "users"[0m
|
43
|
+
[1m[35m (0.1ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20110731204706'
|
44
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
45
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
46
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
47
|
+
Migrating to CreateUsers (20110731204706)
|
48
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
49
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "masked_identifier" varchar(255), "mid" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
50
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
51
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_users_on_masked_identifier" ON "users" ("masked_identifier")[0m
|
52
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110731204706')
|
53
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
54
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
55
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
56
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_masked_identifier')
|
57
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
58
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
59
|
+
[1m[36m (58.3ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "masked_identifier" varchar(255), "mid" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
60
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("users")
|
61
|
+
[1m[36m (2.6ms)[0m [1mCREATE INDEX "index_users_on_masked_identifier" ON "users" ("masked_identifier")[0m
|
62
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
63
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
64
|
+
[1m[35m (3.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
65
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
66
|
+
[1m[35m (2.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110731204706')
|
@@ -0,0 +1,229 @@
|
|
1
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
3
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'jlffQ7uH' LIMIT 1
|
5
|
+
[1m[36mSQL (84.9ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 20:53:46 UTC +00:00], ["masked_identifier", "jlffQ7uH"], ["updated_at", Sun, 31 Jul 2011 20:53:46 UTC +00:00]]
|
6
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
8
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
9
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
10
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'mGpPXqbM' LIMIT 1
|
11
|
+
[1m[36mSQL (41.8ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 21:52:31 UTC +00:00], ["masked_identifier", nil], ["updated_at", Sun, 31 Jul 2011 21:52:31 UTC +00:00]]
|
12
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
13
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'lZkcOoeE' LIMIT 1
|
15
|
+
[1m[36mSQL (41.2ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 21:53:08 UTC +00:00], ["masked_identifier", nil], ["updated_at", Sun, 31 Jul 2011 21:53:08 UTC +00:00]]
|
16
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = '621Ye748' LIMIT 1
|
19
|
+
[1m[36mSQL (13.9ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 21:54:18 UTC +00:00], ["masked_identifier", "621Ye748"], ["updated_at", Sun, 31 Jul 2011 21:54:18 UTC +00:00]]
|
20
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
21
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
22
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'duiEZ3Tu' LIMIT 1
|
23
|
+
[1m[36mSQL (41.0ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 21:59:06 UTC +00:00], ["masked_identifier", "duiEZ3Tu"], ["updated_at", Sun, 31 Jul 2011 21:59:06 UTC +00:00]]
|
24
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
25
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
27
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
28
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
29
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
30
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'dmkLWB8A' LIMIT 1
|
31
|
+
[1m[36mSQL (41.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 22:25:08 UTC +00:00], ["masked_identifier", "dmkLWB8A"], ["updated_at", Sun, 31 Jul 2011 22:25:08 UTC +00:00]]
|
32
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
33
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
34
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
35
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
36
|
+
|
37
|
+
***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
|
38
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
39
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
41
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
43
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
44
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
45
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
46
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
47
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
48
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
49
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'sVmgFL4H' LIMIT 1
|
51
|
+
[1m[36mSQL (40.8ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 22:53:55 UTC +00:00], ["masked_identifier", "sVmgFL4H"], ["updated_at", Sun, 31 Jul 2011 22:53:55 UTC +00:00]]
|
52
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
53
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
54
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
55
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = '2E8L6t329X' LIMIT 1
|
57
|
+
[1m[36mSQL (13.5ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:03:09 UTC +00:00], ["masked_identifier", "2E8L6t329X"], ["updated_at", Sun, 31 Jul 2011 23:03:09 UTC +00:00]]
|
58
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'OCOalPYU8g' LIMIT 1
|
61
|
+
[1m[36mSQL (41.3ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:14:19 UTC +00:00], ["masked_identifier", "OCOalPYU8g"], ["updated_at", Sun, 31 Jul 2011 23:14:19 UTC +00:00]]
|
62
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
63
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
64
|
+
[1m[35mSQL (14.0ms)[0m INSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 31 Jul 2011 23:14:37 UTC +00:00], ["masked_identifier", nil], ["updated_at", Sun, 31 Jul 2011 23:14:37 UTC +00:00]]
|
65
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
66
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
67
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'MFoRyqjbTJ' LIMIT 1
|
68
|
+
[1m[36mSQL (14.1ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:15:26 UTC +00:00], ["masked_identifier", "MFoRyqjbTJ"], ["updated_at", Sun, 31 Jul 2011 23:15:26 UTC +00:00]]
|
69
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
70
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
71
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'lRuQQL' LIMIT 1
|
72
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:15:26 UTC +00:00], ["masked_identifier", "lRuQQL"], ["updated_at", Sun, 31 Jul 2011 23:15:26 UTC +00:00]]
|
73
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
74
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
75
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'EzolGEt7xc' LIMIT 1
|
76
|
+
[1m[36mSQL (14.2ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:19:52 UTC +00:00], ["masked_identifier", "EzolGEt7xc"], ["updated_at", Sun, 31 Jul 2011 23:19:52 UTC +00:00]]
|
77
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
78
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
79
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'mVcbL5' LIMIT 1
|
80
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:19:52 UTC +00:00], ["masked_identifier", "mVcbL5"], ["updated_at", Sun, 31 Jul 2011 23:19:52 UTC +00:00]]
|
81
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
82
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
83
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'dcadabcdab' LIMIT 1
|
84
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:19:52 UTC +00:00], ["masked_identifier", "dcadabcdab"], ["updated_at", Sun, 31 Jul 2011 23:19:52 UTC +00:00]]
|
85
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
86
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
87
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'g1WwvzfsoG' LIMIT 1
|
88
|
+
[1m[36mSQL (14.0ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:30:20 UTC +00:00], ["masked_identifier", "g1WwvzfsoG"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:30:20 UTC +00:00]]
|
89
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
90
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
91
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'Qas3oa' LIMIT 1
|
92
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:30:20 UTC +00:00], ["masked_identifier", "Qas3oa"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:30:20 UTC +00:00]]
|
93
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
94
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
95
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."mid" = 'MGwFRHc2Yv' LIMIT 1
|
96
|
+
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:30:20 UTC +00:00], ["masked_identifier", nil], ["mid", "MGwFRHc2Yv"], ["updated_at", Sun, 31 Jul 2011 23:30:20 UTC +00:00]]
|
97
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
98
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
99
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'badddbaaac' LIMIT 1
|
100
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:30:20 UTC +00:00], ["masked_identifier", "badddbaaac"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:30:20 UTC +00:00]]
|
101
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
102
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
103
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'UjcGpmQCkP' LIMIT 1
|
104
|
+
[1m[36mSQL (14.0ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:34:41 UTC +00:00], ["masked_identifier", "UjcGpmQCkP"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:34:41 UTC +00:00]]
|
105
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
106
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
107
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'nFn7qB' LIMIT 1
|
108
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:34:41 UTC +00:00], ["masked_identifier", "nFn7qB"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:34:41 UTC +00:00]]
|
109
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."mid" = 'pl0svb9jTk' LIMIT 1
|
112
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:34:41 UTC +00:00], ["masked_identifier", nil], ["mid", "pl0svb9jTk"], ["updated_at", Sun, 31 Jul 2011 23:34:41 UTC +00:00]]
|
113
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
114
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
115
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'cdcdbaabbd' LIMIT 1
|
116
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:34:41 UTC +00:00], ["masked_identifier", "cdcdbaabbd"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:34:41 UTC +00:00]]
|
117
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
118
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
119
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'H1V8cFlMMY' LIMIT 1
|
120
|
+
[1m[36mSQL (13.9ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:36:18 UTC +00:00], ["masked_identifier", "H1V8cFlMMY"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:36:18 UTC +00:00]]
|
121
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
122
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
123
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = '3A330x' LIMIT 1
|
124
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:36:18 UTC +00:00], ["masked_identifier", "3A330x"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:36:18 UTC +00:00]]
|
125
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
126
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
127
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
128
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
129
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."mid" = 'Lswaoj7ZR6' LIMIT 1
|
130
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:36:18 UTC +00:00], ["masked_identifier", nil], ["mid", "Lswaoj7ZR6"], ["updated_at", Sun, 31 Jul 2011 23:36:18 UTC +00:00]]
|
131
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
132
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
133
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'ddccccdaad' LIMIT 1
|
134
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:36:18 UTC +00:00], ["masked_identifier", "ddccccdaad"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:36:18 UTC +00:00]]
|
135
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
136
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
137
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'xlh24q3pto' LIMIT 1
|
138
|
+
[1m[36mSQL (14.1ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00], ["masked_identifier", "xlh24q3pto"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00]]
|
139
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
140
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
141
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'LQM2pD' LIMIT 1
|
142
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00], ["masked_identifier", "LQM2pD"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00]]
|
143
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
144
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
145
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
146
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
147
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1
|
148
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00], ["masked_identifier", "b"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00]]
|
149
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
150
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
151
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1
|
152
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1[0m
|
153
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
154
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00], ["masked_identifier", "a"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00]]
|
155
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
157
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
158
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1[0m
|
159
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1
|
160
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1[0m
|
161
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
162
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1[0m
|
163
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1
|
164
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1[0m
|
165
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1
|
166
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1[0m
|
167
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1
|
168
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1[0m
|
169
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1
|
170
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'b' LIMIT 1[0m
|
171
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
172
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
173
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
174
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
175
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
176
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
177
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
178
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
179
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."mid" = 'a7L6FHzlk9' LIMIT 1
|
180
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00], ["masked_identifier", nil], ["mid", "a7L6FHzlk9"], ["updated_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00]]
|
181
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
182
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
183
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'cdcaccadda' LIMIT 1
|
184
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00], ["masked_identifier", "cdcaccadda"], ["mid", nil], ["updated_at", Sun, 31 Jul 2011 23:40:52 UTC +00:00]]
|
185
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
186
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
187
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'ZKDEQXraEy' LIMIT 1
|
188
|
+
[1m[36mSQL (14.0ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00], ["masked_identifier", "ZKDEQXraEy"], ["mid", nil], ["updated_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00]]
|
189
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
190
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
191
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'gFPqnb' LIMIT 1
|
192
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00], ["masked_identifier", "gFPqnb"], ["mid", nil], ["updated_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00]]
|
193
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
194
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
195
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
196
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
197
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
198
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00], ["masked_identifier", "a"], ["mid", nil], ["updated_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00]]
|
199
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
200
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
201
|
+
[1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
202
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
203
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
204
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
205
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
206
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
207
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
208
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
209
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
210
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
211
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
212
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
213
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
214
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
215
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
216
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
217
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
218
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
219
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1
|
220
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'a' LIMIT 1[0m
|
221
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
222
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
223
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."mid" = 'aH65jxpz8R' LIMIT 1
|
224
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00], ["masked_identifier", nil], ["mid", "aH65jxpz8R"], ["updated_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00]]
|
225
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
226
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
227
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."masked_identifier" = 'caddadbabd' LIMIT 1
|
228
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "masked_identifier", "mid", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00], ["masked_identifier", "caddadbabd"], ["mid", nil], ["updated_at", Mon, 01 Aug 2011 00:04:56 UTC +00:00]]
|
229
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|