auto_build 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.md +45 -0
- data/Rakefile +37 -0
- data/lib/auto_build.rb +4 -0
- data/lib/auto_build/builder.rb +40 -0
- data/lib/auto_build/version.rb +3 -0
- data/lib/tasks/auto_build_tasks.rake +4 -0
- data/test/auto_build_test.rb +24 -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/address.rb +3 -0
- data/test/dummy/app/models/phone.rb +3 -0
- data/test/dummy/app/models/user.rb +6 -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 +45 -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 +30 -0
- data/test/dummy/config/environments/production.rb +60 -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 +14 -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/20111211212757_create_users.rb +9 -0
- data/test/dummy/db/migrate/20111211212813_create_addresses.rb +11 -0
- data/test/dummy/db/migrate/20111211213814_create_phones.rb +10 -0
- data/test/dummy/db/schema.rb +37 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +86 -0
- data/test/dummy/log/test.log +211 -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/addresses.yml +7 -0
- data/test/dummy/test/fixtures/phones.yml +9 -0
- data/test/dummy/test/fixtures/users.yml +7 -0
- data/test/dummy/test/unit/address_test.rb +7 -0
- data/test/dummy/test/unit/phone_test.rb +7 -0
- data/test/dummy/test/unit/user_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- metadata +168 -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 = 'bd30b29974384121bf43396f01d860692282032464cf076b3aaa7288deca405f14b90e910abc4b4ad256d3aaae3b0641f7f5080d0bdb400f08fae8b1a8519ab0'
|
@@ -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,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]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -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,37 @@
|
|
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 to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20111211213814) do
|
15
|
+
|
16
|
+
create_table "addresses", :force => true do |t|
|
17
|
+
t.string "street"
|
18
|
+
t.string "city"
|
19
|
+
t.integer "user_id"
|
20
|
+
t.datetime "created_at"
|
21
|
+
t.datetime "updated_at"
|
22
|
+
end
|
23
|
+
|
24
|
+
create_table "phones", :force => true do |t|
|
25
|
+
t.string "number"
|
26
|
+
t.integer "user_id"
|
27
|
+
t.datetime "created_at"
|
28
|
+
t.datetime "updated_at"
|
29
|
+
end
|
30
|
+
|
31
|
+
create_table "users", :force => true do |t|
|
32
|
+
t.string "name"
|
33
|
+
t.datetime "created_at"
|
34
|
+
t.datetime "updated_at"
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
Binary file
|
@@ -0,0 +1,86 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
+
[1m[35m (1.6ms)[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.6ms)[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 (20111211212757)
|
7
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
|
8
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111211212757')[0m
|
9
|
+
Migrating to CreateAddresses (20111211212813)
|
10
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "street" varchar(255), "city" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime)
|
11
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111211212813')[0m
|
12
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
13
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
14
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("addresses")
|
15
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
16
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
17
|
+
Migrating to CreateUsers (20111211212757)
|
18
|
+
Migrating to CreateAddresses (20111211212813)
|
19
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
20
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
21
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("addresses")
|
22
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
23
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
24
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
25
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "street" varchar(255), "city" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
26
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
|
27
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
28
|
+
[1m[35m (0.6ms)[0m PRAGMA index_list("schema_migrations")
|
29
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
30
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
31
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111211212813')[0m
|
32
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111211212757')
|
33
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
34
|
+
Migrating to CreateUsers (20111211212757)
|
35
|
+
Migrating to CreateAddresses (20111211212813)
|
36
|
+
Migrating to CreatePhones (20111211213814)
|
37
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
38
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
39
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111211213814')
|
40
|
+
[1m[36m (0.5ms)[0m [1mselect sqlite_version(*)[0m
|
41
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
42
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("addresses")[0m
|
43
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("phones")
|
44
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
45
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
46
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
47
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "street" varchar(255), "city" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
48
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime)
|
49
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
50
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
51
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
52
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
53
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
54
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111211213814')
|
55
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111211212757')[0m
|
56
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111211212813')
|
57
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
58
|
+
Migrating to CreateUsers (20111211212757)
|
59
|
+
Migrating to CreateAddresses (20111211212813)
|
60
|
+
Migrating to CreatePhones (20111211213814)
|
61
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
62
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
63
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("addresses")
|
64
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("phones")[0m
|
65
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
66
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
67
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
68
|
+
Migrating to CreatePhones (20111211213814)
|
69
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
70
|
+
[1m[35m (0.5ms)[0m DROP TABLE "phones"
|
71
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20111211213814'[0m
|
72
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
73
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
74
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("addresses")
|
75
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
76
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
77
|
+
Migrating to CreateUsers (20111211212757)
|
78
|
+
Migrating to CreateAddresses (20111211212813)
|
79
|
+
Migrating to CreatePhones (20111211213814)
|
80
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
81
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111211213814')
|
82
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
83
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
84
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("addresses")[0m
|
85
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("phones")
|
86
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
@@ -0,0 +1,211 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
8
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
9
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
10
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
11
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
12
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
19
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
20
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
21
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
27
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
28
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
29
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
30
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
31
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
32
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
33
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
34
|
+
[1m[35mSQL (43.2ms)[0m INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Sun, 11 Dec 2011 22:04:27 UTC +00:00], ["street", "Highway 61"], ["updated_at", Sun, 11 Dec 2011 22:04:27 UTC +00:00], ["user_id", nil]]
|
35
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
36
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
38
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
39
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 11 Dec 2011 22:04:27 UTC +00:00], ["name", nil], ["updated_at", Sun, 11 Dec 2011 22:04:27 UTC +00:00]]
|
40
|
+
[1m[35m (0.2ms)[0m UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-11 22:04:27.587030' WHERE "addresses"."id" = 1
|
41
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
|
43
|
+
[1m[36mAddress Load (0.1ms)[0m [1mSELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1[0m
|
44
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
45
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
46
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
47
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
48
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
51
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
52
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
53
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
54
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
57
|
+
[1m[35mSQL (51.7ms)[0m INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Sun, 11 Dec 2011 22:04:43 UTC +00:00], ["street", "Highway 61"], ["updated_at", Sun, 11 Dec 2011 22:04:43 UTC +00:00], ["user_id", nil]]
|
58
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
61
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
62
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
63
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
64
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
65
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
66
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 11 Dec 2011 22:04:44 UTC +00:00], ["name", nil], ["updated_at", Sun, 11 Dec 2011 22:04:44 UTC +00:00]]
|
67
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Sun, 11 Dec 2011 22:04:44 UTC +00:00], ["street", nil], ["updated_at", Sun, 11 Dec 2011 22:04:44 UTC +00:00], ["user_id", 1]]
|
68
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
69
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
|
70
|
+
[1m[36mAddress Load (0.1ms)[0m [1mSELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1[0m
|
71
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
72
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "addresses" SET "user_id" = NULL, "updated_at" = '2011-12-11 22:04:44.036655' WHERE "addresses"."id" = 2[0m
|
73
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
74
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
75
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Sun, 11 Dec 2011 22:04:44 UTC +00:00], ["street", nil], ["updated_at", Sun, 11 Dec 2011 22:04:44 UTC +00:00], ["user_id", 1]]
|
76
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
77
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
78
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
79
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
80
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
81
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
82
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
83
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
84
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
85
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
86
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
87
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
88
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
89
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
90
|
+
[1m[35mSQL (42.1ms)[0m INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Sun, 11 Dec 2011 22:04:56 UTC +00:00], ["street", "Highway 61"], ["updated_at", Sun, 11 Dec 2011 22:04:56 UTC +00:00], ["user_id", nil]]
|
91
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
92
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
93
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
94
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
95
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 11 Dec 2011 22:04:56 UTC +00:00], ["name", nil], ["updated_at", Sun, 11 Dec 2011 22:04:56 UTC +00:00]]
|
96
|
+
[1m[35m (0.2ms)[0m UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-11 22:04:56.724847' WHERE "addresses"."id" = 1
|
97
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
98
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
|
99
|
+
[1m[36mAddress Load (0.1ms)[0m [1mSELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1[0m
|
100
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
101
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
102
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
103
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
104
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
105
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
106
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
107
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
108
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
112
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
113
|
+
[1m[35mSQL (44.2ms)[0m INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Sun, 11 Dec 2011 22:50:04 UTC +00:00], ["street", "Highway 61"], ["updated_at", Sun, 11 Dec 2011 22:50:04 UTC +00:00], ["user_id", nil]]
|
114
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
115
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
116
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
117
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
118
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 11 Dec 2011 22:50:04 UTC +00:00], ["name", nil], ["updated_at", Sun, 11 Dec 2011 22:50:04 UTC +00:00]]
|
119
|
+
[1m[35m (0.2ms)[0m UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-11 22:50:04.837782' WHERE "addresses"."id" = 1
|
120
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
121
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
|
122
|
+
[1m[36mAddress Load (0.1ms)[0m [1mSELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1[0m
|
123
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
124
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
125
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
126
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
127
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
128
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
129
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
130
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
131
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
132
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
133
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
134
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
135
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
136
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
137
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
138
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
139
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
140
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
141
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
142
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
143
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
144
|
+
[1m[35mSQL (44.5ms)[0m INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Sun, 11 Dec 2011 23:48:34 UTC +00:00], ["street", "Highway 61"], ["updated_at", Sun, 11 Dec 2011 23:48:34 UTC +00:00], ["user_id", nil]]
|
145
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
146
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
147
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
148
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
149
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 11 Dec 2011 23:48:34 UTC +00:00], ["name", nil], ["updated_at", Sun, 11 Dec 2011 23:48:34 UTC +00:00]]
|
150
|
+
[1m[35m (0.2ms)[0m UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-11 23:48:34.371519' WHERE "addresses"."id" = 1
|
151
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
152
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
|
153
|
+
[1m[36mAddress Load (0.1ms)[0m [1mSELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1[0m
|
154
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
156
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
157
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
158
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
159
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
160
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
161
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
162
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
163
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
164
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
165
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
166
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
167
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
168
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
169
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
170
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
171
|
+
[1m[35mSQL (41.5ms)[0m INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Sun, 11 Dec 2011 23:48:51 UTC +00:00], ["street", "Highway 61"], ["updated_at", Sun, 11 Dec 2011 23:48:51 UTC +00:00], ["user_id", nil]]
|
172
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
173
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
174
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
175
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
176
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 11 Dec 2011 23:48:51 UTC +00:00], ["name", nil], ["updated_at", Sun, 11 Dec 2011 23:48:51 UTC +00:00]]
|
177
|
+
[1m[35m (0.2ms)[0m UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-11 23:48:51.800823' WHERE "addresses"."id" = 1
|
178
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
179
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
|
180
|
+
[1m[36mAddress Load (0.1ms)[0m [1mSELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1[0m
|
181
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
182
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
183
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
184
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
185
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
186
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
187
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
188
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
189
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
190
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
191
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
192
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
193
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
194
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
195
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
196
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
197
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
198
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
199
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
200
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
201
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
202
|
+
[1m[35mSQL (8.2ms)[0m INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Sun, 11 Dec 2011 23:51:53 UTC +00:00], ["street", "Highway 61"], ["updated_at", Sun, 11 Dec 2011 23:51:53 UTC +00:00], ["user_id", nil]]
|
203
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
204
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
205
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
206
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
207
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 11 Dec 2011 23:51:53 UTC +00:00], ["name", nil], ["updated_at", Sun, 11 Dec 2011 23:51:53 UTC +00:00]]
|
208
|
+
[1m[35m (0.2ms)[0m UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-11 23:51:53.174978' WHERE "addresses"."id" = 1
|
209
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
210
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
|
211
|
+
[1m[36mAddress Load (0.1ms)[0m [1mSELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1[0m
|