bento 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. data/README.rdoc +62 -0
  2. data/lib/bento.rb +6 -0
  3. data/lib/bento/controllers/account_scopable.rb +22 -0
  4. data/lib/bento/controllers/helpers.rb +17 -0
  5. data/lib/bento/models/account.rb +59 -0
  6. data/lib/bento/rails.rb +4 -0
  7. data/lib/bento/version.rb +3 -0
  8. data/lib/generators/active_record/bento_generator.rb +29 -0
  9. data/lib/generators/active_record/templates/add_migration.rb +9 -0
  10. data/lib/generators/active_record/templates/create_migration.rb +18 -0
  11. data/lib/generators/bento/bento_generator.rb +13 -0
  12. data/lib/generators/bento/orm_helpers.rb +22 -0
  13. data/lib/generators/bento/views_generator.rb +14 -0
  14. data/spec/bento/controllers/helpers_spec.rb +4 -0
  15. data/spec/bento/models/account_spec.rb +125 -0
  16. data/spec/proof_of_concepts_spec.rb +17 -0
  17. data/spec/rails_app/Rakefile +7 -0
  18. data/spec/rails_app/app/controllers/all_projects_controller.rb +6 -0
  19. data/spec/rails_app/app/controllers/application_controller.rb +4 -0
  20. data/spec/rails_app/app/controllers/custom_accounts_controller.rb +9 -0
  21. data/spec/rails_app/app/controllers/home_controller.rb +4 -0
  22. data/spec/rails_app/app/controllers/projects_controller.rb +6 -0
  23. data/spec/rails_app/app/models/account.rb +10 -0
  24. data/spec/rails_app/app/models/project.rb +4 -0
  25. data/spec/rails_app/app/models/user.rb +8 -0
  26. data/spec/rails_app/app/views/custom_accounts/new.html.erb +10 -0
  27. data/spec/rails_app/app/views/home/index.html.erb +1 -0
  28. data/spec/rails_app/app/views/layouts/application.html.erb +29 -0
  29. data/spec/rails_app/app/views/projects/_all_projects.html.erb +9 -0
  30. data/spec/rails_app/app/views/projects/_current_account_projects.html.erb +9 -0
  31. data/spec/rails_app/app/views/projects/_form.html.erb +5 -0
  32. data/spec/rails_app/app/views/projects/edit.html.erb +1 -0
  33. data/spec/rails_app/app/views/projects/index.html.erb +7 -0
  34. data/spec/rails_app/app/views/projects/new.html.erb +1 -0
  35. data/spec/rails_app/config.ru +4 -0
  36. data/spec/rails_app/config/application.rb +43 -0
  37. data/spec/rails_app/config/boot.rb +15 -0
  38. data/spec/rails_app/config/database.yml +22 -0
  39. data/spec/rails_app/config/environment.rb +6 -0
  40. data/spec/rails_app/config/environments/development.rb +28 -0
  41. data/spec/rails_app/config/environments/production.rb +49 -0
  42. data/spec/rails_app/config/environments/test.rb +35 -0
  43. data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -0
  44. data/spec/rails_app/config/initializers/devise.rb +142 -0
  45. data/spec/rails_app/config/initializers/inaccessible_attributes.rb +13 -0
  46. data/spec/rails_app/config/initializers/inflections.rb +10 -0
  47. data/spec/rails_app/config/initializers/mime_types.rb +5 -0
  48. data/spec/rails_app/config/initializers/secret_token.rb +7 -0
  49. data/spec/rails_app/config/initializers/session_store.rb +8 -0
  50. data/spec/rails_app/config/locales/devise.en.yml +39 -0
  51. data/spec/rails_app/config/locales/en.yml +5 -0
  52. data/spec/rails_app/config/routes.rb +9 -0
  53. data/spec/rails_app/db/development.sqlite3 +0 -0
  54. data/spec/rails_app/db/migrate/20100924132032_devise_create_users.rb +19 -0
  55. data/spec/rails_app/db/migrate/20101015094514_bento_create_accounts.rb +15 -0
  56. data/spec/rails_app/db/migrate/20101015094515_bento_add_account_id_to_accounts.rb +9 -0
  57. data/spec/rails_app/db/migrate/20101015143011_create_projects.rb +13 -0
  58. data/spec/rails_app/db/production.sqlite3 +0 -0
  59. data/spec/rails_app/db/schema.rb +44 -0
  60. data/spec/rails_app/db/test.sqlite3 +0 -0
  61. data/spec/rails_app/log/development.log +1290 -0
  62. data/spec/rails_app/log/test.log +30285 -0
  63. data/spec/rails_app/public/404.html +26 -0
  64. data/spec/rails_app/public/422.html +26 -0
  65. data/spec/rails_app/public/500.html +26 -0
  66. data/spec/rails_app/public/favicon.ico +0 -0
  67. data/spec/rails_app/script/rails +6 -0
  68. data/spec/rails_app/tmp/pids/server.pid +1 -0
  69. data/spec/spec_helper.rb +21 -0
  70. data/spec/support/bento_spec_helper.rb +16 -0
  71. data/spec/support/blueprints.rb +32 -0
  72. metadata +403 -0
@@ -0,0 +1,13 @@
1
+ ActiveRecord::Base.send(:attr_accessible, nil)
2
+
3
+ unless Rails.env.production?
4
+ module ActiveModel
5
+ class MassAssignmentError < StandardError; end
6
+ end
7
+
8
+ ActiveModel::MassAssignmentSecurity::Sanitizer.class_eval do
9
+ def warn!(attributes)
10
+ raise ActiveModel::MassAssignmentError, "Can't mass-assign these protected attributes: #{attributes.join(', ')}"
11
+ end
12
+ end
13
+ end
@@ -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,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,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
+ RailsApp::Application.config.secret_token = 'ce9e857d0bb5e781f3c9afd4519f0fdb013cd3e3621d290c1cc3f72c734b29950a009165401643c160905bf18ba57ece77c861ca75013eb7736527752a4e0f15'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ RailsApp::Application.config.session_store :cookie_store, :key => '_rails_app_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 "rake db:sessions:create")
8
+ # RailsApp::Application.config.session_store :active_record_store
@@ -0,0 +1,39 @@
1
+ en:
2
+ errors:
3
+ messages:
4
+ not_found: "not found"
5
+ already_confirmed: "was already confirmed"
6
+ not_locked: "was not locked"
7
+
8
+ devise:
9
+ failure:
10
+ unauthenticated: 'You need to sign in or sign up before continuing.'
11
+ unconfirmed: 'You have to confirm your account before continuing.'
12
+ locked: 'Your account is locked.'
13
+ invalid: 'Invalid email or password.'
14
+ invalid_token: 'Invalid authentication token.'
15
+ timeout: 'Your session expired, please sign in again to continue.'
16
+ inactive: 'Your account was not activated yet.'
17
+ sessions:
18
+ signed_in: 'Signed in successfully.'
19
+ signed_out: 'Signed out successfully.'
20
+ passwords:
21
+ send_instructions: 'You will receive an email with instructions about how to reset your password in a few minutes.'
22
+ updated: 'Your password was changed successfully. You are now signed in.'
23
+ confirmations:
24
+ send_instructions: 'You will receive an email with instructions about how to confirm your account in a few minutes.'
25
+ confirmed: 'Your account was successfully confirmed. You are now signed in.'
26
+ registrations:
27
+ signed_up: 'You have signed up successfully. If enabled, a confirmation was sent to your e-mail.'
28
+ updated: 'You updated your account successfully.'
29
+ destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.'
30
+ unlocks:
31
+ send_instructions: 'You will receive an email with instructions about how to unlock your account in a few minutes.'
32
+ unlocked: 'Your account was successfully unlocked. You are now signed in.'
33
+ mailer:
34
+ confirmation_instructions:
35
+ subject: 'Confirmation instructions'
36
+ reset_password_instructions:
37
+ subject: 'Reset password instructions'
38
+ unlock_instructions:
39
+ subject: 'Unlock Instructions'
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,9 @@
1
+ RailsApp::Application.routes.draw do
2
+ devise_for :users
3
+
4
+ resources :custom_accounts, :only => %w[new create]
5
+ resources :all_projects, :only => %w[edit]
6
+ resources :projects
7
+
8
+ root :to => "home#index"
9
+ end
@@ -0,0 +1,19 @@
1
+ class DeviseCreateUsers < ActiveRecord::Migration
2
+ def self.up
3
+ create_table(:users) do |t|
4
+ t.database_authenticatable :null => false
5
+ t.string :first_name
6
+ t.string :last_name
7
+
8
+ #t.rememberable
9
+ # t.confirmable
10
+ t.timestamps
11
+ end
12
+
13
+ add_index :users, :email, :unique => true
14
+ end
15
+
16
+ def self.down
17
+ drop_table :users
18
+ end
19
+ end
@@ -0,0 +1,15 @@
1
+ class BentoCreateAccounts < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :accounts do |t|
4
+ t.string :name
5
+ t.string :plan
6
+ t.timestamps
7
+ end
8
+
9
+ add_index :accounts, :name, :unique => true
10
+ end
11
+
12
+ def self.down
13
+ drop_table :accounts
14
+ end
15
+ end
@@ -0,0 +1,9 @@
1
+ class BentoAddAccountIdToAccounts < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :users, :account_id, :integer
4
+ end
5
+
6
+ def self.down
7
+ remove_column :users, :column_name
8
+ end
9
+ end
@@ -0,0 +1,13 @@
1
+ class CreateProjects < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :projects do |t|
4
+ t.string :name
5
+ t.integer :account_id, :null => false
6
+ t.timestamps
7
+ end
8
+ end
9
+
10
+ def self.down
11
+ drop_table :projects
12
+ end
13
+ end
File without changes
@@ -0,0 +1,44 @@
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 => 20101015143011) do
14
+
15
+ create_table "accounts", :force => true do |t|
16
+ t.string "name"
17
+ t.string "plan"
18
+ t.datetime "created_at"
19
+ t.datetime "updated_at"
20
+ end
21
+
22
+ add_index "accounts", ["name"], :name => "index_accounts_on_name", :unique => true
23
+
24
+ create_table "projects", :force => true do |t|
25
+ t.string "name"
26
+ t.integer "account_id", :null => false
27
+ t.datetime "created_at"
28
+ t.datetime "updated_at"
29
+ end
30
+
31
+ create_table "users", :force => true do |t|
32
+ t.string "email", :default => "", :null => false
33
+ t.string "encrypted_password", :limit => 128, :default => "", :null => false
34
+ t.string "password_salt", :default => "", :null => false
35
+ t.string "first_name"
36
+ t.string "last_name"
37
+ t.datetime "created_at"
38
+ t.datetime "updated_at"
39
+ t.integer "account_id"
40
+ end
41
+
42
+ add_index "users", ["email"], :name => "index_users_on_email", :unique => true
43
+
44
+ end
Binary file
@@ -0,0 +1,1290 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at Sun Sep 12 13:56:24 +0200 2010
4
+ Processing by HomeController#index as HTML
5
+ Rendered home/index.html.erb within layouts/application (1.7ms)
6
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
10
+
11
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
12
+
13
+
14
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
15
+
16
+
17
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
18
+
19
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
20
+
21
+
22
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
23
+
24
+
25
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
26
+
27
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
28
+
29
+
30
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
31
+
32
+
33
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
34
+
35
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
36
+
37
+
38
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
39
+
40
+
41
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
42
+
43
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
44
+
45
+
46
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
47
+
48
+
49
+ Started GET "/bento/infp" for 127.0.0.1 at Sun Sep 12 13:56:34 +0200 2010
50
+
51
+ ActionController::RoutingError (No route matches "/bento/infp"):
52
+
53
+
54
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
55
+
56
+
57
+ Started GET "/bento/info" for 127.0.0.1 at Sun Sep 12 13:56:36 +0200 2010
58
+
59
+ ActionController::RoutingError (No route matches "/bento/info"):
60
+
61
+
62
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
63
+
64
+
65
+ Started GET "/info" for 127.0.0.1 at Sun Sep 12 13:56:47 +0200 2010
66
+
67
+ ActionController::RoutingError (No route matches "/info"):
68
+
69
+
70
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
71
+
72
+
73
+ Started GET "/accounts" for 127.0.0.1 at Sun Sep 12 13:57:07 +0200 2010
74
+
75
+ ActionController::RoutingError (No route matches "/accounts"):
76
+
77
+
78
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
79
+
80
+
81
+ Started GET "/bento/accounts" for 127.0.0.1 at Sun Sep 12 13:57:09 +0200 2010
82
+
83
+ ActionController::RoutingError (No route matches "/bento/accounts"):
84
+
85
+
86
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
87
+
88
+
89
+ Started GET "/bento/accounts" for 127.0.0.1 at Sun Sep 12 13:58:10 +0200 2010
90
+
91
+ ActionController::RoutingError (No route matches "/bento/accounts"):
92
+
93
+
94
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
95
+
96
+
97
+ Started GET "/" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
98
+ Processing by HomeController#index as HTML
99
+ Rendered home/index.html.erb within layouts/application (1.6ms)
100
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
101
+
102
+
103
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
104
+
105
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
106
+
107
+
108
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
109
+
110
+
111
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
112
+
113
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
114
+
115
+
116
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
117
+
118
+
119
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
120
+
121
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
122
+
123
+
124
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
125
+
126
+
127
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
128
+
129
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
130
+
131
+
132
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
133
+
134
+
135
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
136
+
137
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
138
+
139
+
140
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
141
+
142
+
143
+ Started GET "/" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
144
+ Processing by HomeController#index as HTML
145
+ Rendered home/index.html.erb within layouts/application (1.6ms)
146
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
147
+
148
+
149
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
150
+
151
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
152
+
153
+
154
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
155
+
156
+
157
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
158
+
159
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
160
+
161
+
162
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
163
+
164
+
165
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
166
+
167
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
168
+
169
+
170
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
171
+
172
+
173
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
174
+
175
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
176
+
177
+
178
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
179
+
180
+
181
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
182
+
183
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
184
+
185
+
186
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
187
+
188
+
189
+ Started GET "/accounts" for 127.0.0.1 at Sun Sep 12 14:12:21 +0200 2010
190
+
191
+ ActionController::RoutingError (No route matches "/accounts"):
192
+
193
+
194
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
195
+
196
+
197
+ Started GET "/bento/accounts" for 127.0.0.1 at Sun Sep 12 14:12:24 +0200 2010
198
+
199
+ ActionController::RoutingError (No route matches "/bento/accounts"):
200
+
201
+
202
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
203
+
204
+
205
+ Started GET "/" for 127.0.0.1 at Sun Sep 12 14:18:33 +0200 2010
206
+ Processing by HomeController#index as HTML
207
+ Rendered home/index.html.erb within layouts/application (1.7ms)
208
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
209
+
210
+
211
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
212
+
213
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
214
+
215
+
216
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.1ms)
217
+
218
+
219
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
220
+
221
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
222
+
223
+
224
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
225
+
226
+
227
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
228
+
229
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
230
+
231
+
232
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
233
+
234
+
235
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
236
+
237
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
238
+
239
+
240
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
241
+
242
+
243
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
244
+
245
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
246
+
247
+
248
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
249
+
250
+
251
+ Started GET "/" for 127.0.0.1 at Sat Sep 18 13:42:29 +0200 2010
252
+ Processing by HomeController#index as HTML
253
+ Rendered home/index.html.erb within layouts/application (2.2ms)
254
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
255
+
256
+
257
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
258
+
259
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
260
+
261
+
262
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
263
+
264
+
265
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
266
+
267
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
268
+
269
+
270
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
271
+
272
+
273
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
274
+
275
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
276
+
277
+
278
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
279
+
280
+
281
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
282
+
283
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
284
+
285
+
286
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
287
+
288
+
289
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
290
+
291
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
292
+
293
+
294
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
295
+
296
+
297
+ Started GET "/accounts/new" for 127.0.0.1 at Sat Sep 18 13:42:31 +0200 2010
298
+
299
+ ActionController::RoutingError (undefined local variable or method `inherit_resources' for Bento::AccountsController:Class):
300
+
301
+
302
+ Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
303
+ SQL (0.4ms)  SELECT name
304
+ FROM sqlite_master
305
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
306
+ 
307
+ SQL (11.9ms) select sqlite_version(*)
308
+ SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
309
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
310
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
311
+ SQL (0.1ms) SELECT name
312
+ FROM sqlite_master
313
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
314
+ SQL (0.2ms)  SELECT name
315
+ FROM sqlite_master
316
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
317
+ 
318
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
319
+ Migrating to BentoCreateAccounts (20100918192231)
320
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
321
+ SQL (0.0ms) PRAGMA index_list("accounts")
322
+ SQL (49.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
323
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192231')
324
+ SQL (0.2ms)  SELECT name
325
+ FROM sqlite_master
326
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
327
+ 
328
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
329
+ SQL (0.1ms)  SELECT name
330
+ FROM sqlite_master
331
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
332
+ 
333
+ SQL (0.1ms) PRAGMA index_list("accounts")
334
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
335
+ SQL (0.6ms)  SELECT name
336
+ FROM sqlite_master
337
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
338
+ 
339
+ SQL (0.1ms) SELECT name
340
+ FROM sqlite_master
341
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
342
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
343
+ SQL (0.1ms) select sqlite_version(*)
344
+ SQL (0.2ms)  SELECT name
345
+ FROM sqlite_master
346
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
347
+ 
348
+ SQL (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
349
+ SQL (0.1ms) PRAGMA index_list("accounts")
350
+ SQL (1.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
351
+ SQL (0.2ms)  SELECT name
352
+ FROM sqlite_master
353
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
354
+ 
355
+ SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
356
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
357
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
358
+ SQL (0.1ms)  SELECT name
359
+ FROM sqlite_master
360
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
361
+ 
362
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
363
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192231')
364
+ SQL (0.7ms)  SELECT name
365
+ FROM sqlite_master
366
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
367
+ 
368
+ SQL (0.2ms) SELECT name
369
+ FROM sqlite_master
370
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
371
+ SQL (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
372
+ Migrating to BentoCreateAccounts (20100918192341)
373
+ SQL (0.1ms) select sqlite_version(*)
374
+ SQL (0.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
375
+ SQLite3::SQLException: table "accounts" already exists: CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
376
+ SQL (0.4ms)  SELECT name
377
+ FROM sqlite_master
378
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
379
+ 
380
+ SQL (1.6ms) select sqlite_version(*)
381
+ SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
382
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
383
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
384
+ SQL (0.1ms) SELECT name
385
+ FROM sqlite_master
386
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
387
+ SQL (0.2ms)  SELECT name
388
+ FROM sqlite_master
389
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
390
+ 
391
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
392
+ Migrating to BentoCreateAccounts (20100918192341)
393
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
394
+ SQL (0.0ms) PRAGMA index_list("accounts")
395
+ SQL (0.7ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
396
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
397
+ Migrating to DeviseCreateUsers (20100924132032)
398
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime) 
399
+ SQL (0.0ms) PRAGMA index_list("users")
400
+ SQL (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
401
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
402
+ SQL (0.2ms)  SELECT name
403
+ FROM sqlite_master
404
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
405
+ 
406
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
407
+ SQL (0.1ms)  SELECT name
408
+ FROM sqlite_master
409
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
410
+ 
411
+ SQL (0.1ms) PRAGMA index_list("accounts")
412
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
413
+ SQL (0.1ms) PRAGMA index_list("users")
414
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
415
+ SQL (0.2ms) SELECT name
416
+ FROM sqlite_master
417
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
418
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
419
+ SQL (0.1ms) select sqlite_version(*)
420
+ SQL (0.2ms)  SELECT name
421
+ FROM sqlite_master
422
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
423
+ 
424
+ SQL (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
425
+ SQL (0.0ms) PRAGMA index_list("accounts")
426
+ SQL (1.0ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
427
+ SQL (0.2ms)  SELECT name
428
+ FROM sqlite_master
429
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
430
+ 
431
+ SQL (1.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime)
432
+ SQL (0.1ms) PRAGMA index_list("users")
433
+ SQL (1.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
434
+ SQL (0.2ms)  SELECT name
435
+ FROM sqlite_master
436
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
437
+ 
438
+ SQL (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
439
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
440
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
441
+ SQL (0.1ms)  SELECT name
442
+ FROM sqlite_master
443
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
444
+ 
445
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
446
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
447
+ SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
448
+ SQL (0.4ms)  SELECT name
449
+ FROM sqlite_master
450
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
451
+ 
452
+ SQL (0.2ms) select sqlite_version(*)
453
+ SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
454
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
455
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
456
+ SQL (0.1ms) SELECT name
457
+ FROM sqlite_master
458
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
459
+ SQL (0.1ms)  SELECT name
460
+ FROM sqlite_master
461
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
462
+ 
463
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
464
+ Migrating to BentoCreateAccounts (20100918192341)
465
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
466
+ SQL (0.0ms) PRAGMA index_list("accounts")
467
+ SQL (0.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
468
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
469
+ Migrating to DeviseCreateUsers (20100924132032)
470
+ SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
471
+ SQL (0.0ms) PRAGMA index_list("users")
472
+ SQL (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
473
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
474
+ SQL (0.2ms)  SELECT name
475
+ FROM sqlite_master
476
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
477
+ 
478
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
479
+ SQL (0.1ms)  SELECT name
480
+ FROM sqlite_master
481
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
482
+ 
483
+ SQL (0.1ms) PRAGMA index_list("accounts")
484
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
485
+ SQL (0.1ms) PRAGMA index_list("users")
486
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
487
+ SQL (0.2ms) SELECT name
488
+ FROM sqlite_master
489
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
490
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
491
+ SQL (0.1ms) select sqlite_version(*)
492
+ SQL (0.2ms)  SELECT name
493
+ FROM sqlite_master
494
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
495
+ 
496
+ SQL (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
497
+ SQL (0.1ms) PRAGMA index_list("accounts")
498
+ SQL (1.3ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
499
+ SQL (0.1ms)  SELECT name
500
+ FROM sqlite_master
501
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
502
+ 
503
+ SQL (1.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
504
+ SQL (0.0ms) PRAGMA index_list("users")
505
+ SQL (1.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
506
+ SQL (0.1ms)  SELECT name
507
+ FROM sqlite_master
508
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
509
+ 
510
+ SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
511
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
512
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
513
+ SQL (0.1ms)  SELECT name
514
+ FROM sqlite_master
515
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
516
+ 
517
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
518
+ SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
519
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
520
+ SQL (0.4ms)  SELECT name
521
+ FROM sqlite_master
522
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
523
+ 
524
+ SQL (0.1ms) select sqlite_version(*)
525
+ SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
526
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
527
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
528
+ SQL (0.2ms) SELECT name
529
+ FROM sqlite_master
530
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
531
+ SQL (0.2ms)  SELECT name
532
+ FROM sqlite_master
533
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
534
+ 
535
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
536
+ Migrating to BentoCreateAccounts (20100918192341)
537
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
538
+ SQL (0.6ms) PRAGMA index_list("accounts")
539
+ SQL (0.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
540
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
541
+ Migrating to DeviseCreateUsers (20100924132032)
542
+ SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
543
+ SQL (0.0ms) PRAGMA index_list("users")
544
+ SQL (0.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
545
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
546
+ SQL (0.2ms)  SELECT name
547
+ FROM sqlite_master
548
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
549
+ 
550
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
551
+ SQL (0.1ms)  SELECT name
552
+ FROM sqlite_master
553
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
554
+ 
555
+ SQL (0.1ms) PRAGMA index_list("accounts")
556
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
557
+ SQL (0.1ms) PRAGMA index_list("users")
558
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
559
+ SQL (0.2ms) SELECT name
560
+ FROM sqlite_master
561
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
562
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
563
+ SQL (0.1ms) select sqlite_version(*)
564
+ SQL (0.2ms)  SELECT name
565
+ FROM sqlite_master
566
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
567
+ 
568
+ SQL (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
569
+ SQL (0.1ms) PRAGMA index_list("accounts")
570
+ SQL (1.3ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
571
+ SQL (0.2ms)  SELECT name
572
+ FROM sqlite_master
573
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
574
+ 
575
+ SQL (1.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
576
+ SQL (0.0ms) PRAGMA index_list("users")
577
+ SQL (1.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
578
+ SQL (0.1ms)  SELECT name
579
+ FROM sqlite_master
580
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
581
+ 
582
+ SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
583
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
584
+ SQL (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
585
+ SQL (0.2ms)  SELECT name
586
+ FROM sqlite_master
587
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
588
+ 
589
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
590
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
591
+ SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
592
+ SQL (0.4ms)  SELECT name
593
+ FROM sqlite_master
594
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
595
+ 
596
+ SQL (0.1ms) select sqlite_version(*)
597
+ SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
598
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
599
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
600
+ SQL (0.1ms) SELECT name
601
+ FROM sqlite_master
602
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
603
+ SQL (0.2ms)  SELECT name
604
+ FROM sqlite_master
605
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
606
+ 
607
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
608
+ Migrating to BentoCreateAccounts (20100918192341)
609
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
610
+ SQL (0.0ms) PRAGMA index_list("accounts")
611
+ SQL (0.7ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
612
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
613
+ Migrating to DeviseCreateUsers (20100924132032)
614
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
615
+ SQL (0.0ms) PRAGMA index_list("users")
616
+ SQL (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
617
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
618
+ SQL (0.2ms)  SELECT name
619
+ FROM sqlite_master
620
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
621
+ 
622
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
623
+ SQL (0.1ms)  SELECT name
624
+ FROM sqlite_master
625
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
626
+ 
627
+ SQL (0.1ms) PRAGMA index_list("accounts")
628
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
629
+ SQL (0.1ms) PRAGMA index_list("users")
630
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
631
+ SQL (0.2ms) SELECT name
632
+ FROM sqlite_master
633
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
634
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
635
+ SQL (0.1ms) select sqlite_version(*)
636
+ SQL (0.2ms)  SELECT name
637
+ FROM sqlite_master
638
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
639
+ 
640
+ SQL (2.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
641
+ SQL (0.1ms) PRAGMA index_list("accounts")
642
+ SQL (2.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
643
+ SQL (0.2ms)  SELECT name
644
+ FROM sqlite_master
645
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
646
+ 
647
+ SQL (1.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
648
+ SQL (0.0ms) PRAGMA index_list("users")
649
+ SQL (1.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
650
+ SQL (0.1ms)  SELECT name
651
+ FROM sqlite_master
652
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
653
+ 
654
+ SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
655
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
656
+ SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
657
+ SQL (0.2ms)  SELECT name
658
+ FROM sqlite_master
659
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
660
+ 
661
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
662
+ SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
663
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
664
+ SQL (0.4ms)  SELECT name
665
+ FROM sqlite_master
666
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
667
+ 
668
+ SQL (0.1ms) select sqlite_version(*)
669
+ SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
670
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
671
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
672
+ SQL (0.1ms) SELECT name
673
+ FROM sqlite_master
674
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
675
+ SQL (0.2ms)  SELECT name
676
+ FROM sqlite_master
677
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
678
+ 
679
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
680
+ Migrating to BentoCreateAccounts (20100918192341)
681
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
682
+ SQL (0.1ms) PRAGMA index_list("accounts")
683
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
684
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
685
+ Migrating to DeviseCreateUsers (20100924132032)
686
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
687
+ SQL (0.0ms) PRAGMA index_list("users")
688
+ SQL (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
689
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
690
+ SQL (0.2ms)  SELECT name
691
+ FROM sqlite_master
692
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
693
+ 
694
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
695
+ SQL (0.1ms)  SELECT name
696
+ FROM sqlite_master
697
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
698
+ 
699
+ SQL (0.1ms) PRAGMA index_list("accounts")
700
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
701
+ SQL (0.1ms) PRAGMA index_list("users")
702
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
703
+ SQL (0.4ms) SELECT name
704
+ FROM sqlite_master
705
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
706
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
707
+ SQL (0.1ms) select sqlite_version(*)
708
+ SQL (0.2ms)  SELECT name
709
+ FROM sqlite_master
710
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
711
+ 
712
+ SQL (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
713
+ SQL (0.0ms) PRAGMA index_list("accounts")
714
+ SQL (1.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
715
+ SQL (0.2ms)  SELECT name
716
+ FROM sqlite_master
717
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
718
+ 
719
+ SQL (1.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
720
+ SQL (0.1ms) PRAGMA index_list("users")
721
+ SQL (2.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
722
+ SQL (0.2ms)  SELECT name
723
+ FROM sqlite_master
724
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
725
+ 
726
+ SQL (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
727
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
728
+ SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
729
+ SQL (0.1ms)  SELECT name
730
+ FROM sqlite_master
731
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
732
+ 
733
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
734
+ SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
735
+ SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
736
+ SQL (0.4ms)  SELECT name
737
+ FROM sqlite_master
738
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
739
+ 
740
+ SQL (0.1ms) select sqlite_version(*)
741
+ SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
742
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
743
+ SQL (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
744
+ SQL (0.1ms) SELECT name
745
+ FROM sqlite_master
746
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
747
+ SQL (0.2ms)  SELECT name
748
+ FROM sqlite_master
749
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
750
+ 
751
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
752
+ Migrating to BentoCreateAccounts (20100918192341)
753
+ SQL (0.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
754
+ SQL (0.1ms) PRAGMA index_list("accounts")
755
+ SQL (0.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
756
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
757
+ Migrating to DeviseCreateUsers (20100924132032)
758
+ SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
759
+ SQL (0.0ms) PRAGMA index_list("users")
760
+ SQL (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
761
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
762
+ SQL (0.2ms)  SELECT name
763
+ FROM sqlite_master
764
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
765
+ 
766
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
767
+ SQL (0.1ms)  SELECT name
768
+ FROM sqlite_master
769
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
770
+ 
771
+ SQL (0.1ms) PRAGMA index_list("accounts")
772
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
773
+ SQL (0.1ms) PRAGMA index_list("users")
774
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
775
+ SQL (0.2ms) SELECT name
776
+ FROM sqlite_master
777
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
778
+ SQL (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
779
+ SQL (0.1ms) select sqlite_version(*)
780
+ SQL (0.2ms)  SELECT name
781
+ FROM sqlite_master
782
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
783
+ 
784
+ SQL (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
785
+ SQL (0.0ms) PRAGMA index_list("accounts")
786
+ SQL (1.3ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
787
+ SQL (0.2ms)  SELECT name
788
+ FROM sqlite_master
789
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
790
+ 
791
+ SQL (1.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
792
+ SQL (0.1ms) PRAGMA index_list("users")
793
+ SQL (1.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
794
+ SQL (0.1ms)  SELECT name
795
+ FROM sqlite_master
796
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
797
+ 
798
+ SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
799
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
800
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
801
+ SQL (0.1ms)  SELECT name
802
+ FROM sqlite_master
803
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
804
+ 
805
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
806
+ SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
807
+ SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
808
+ SQL (0.4ms)  SELECT name
809
+ FROM sqlite_master
810
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
811
+ 
812
+ SQL (0.1ms) select sqlite_version(*)
813
+ SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
814
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
815
+ SQL (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
816
+ SQL (0.2ms) SELECT name
817
+ FROM sqlite_master
818
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
819
+ SQL (0.1ms)  SELECT name
820
+ FROM sqlite_master
821
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
822
+ 
823
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
824
+ Migrating to BentoCreateAccounts (20100918192341)
825
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
826
+ SQL (0.1ms) PRAGMA index_list("accounts")
827
+ SQL (0.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
828
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
829
+ Migrating to DeviseCreateUsers (20100924132032)
830
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
831
+ SQL (0.0ms) PRAGMA index_list("users")
832
+ SQL (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
833
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
834
+ SQL (0.2ms)  SELECT name
835
+ FROM sqlite_master
836
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
837
+ 
838
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
839
+ SQL (0.1ms)  SELECT name
840
+ FROM sqlite_master
841
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
842
+ 
843
+ SQL (0.1ms) PRAGMA index_list("accounts")
844
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
845
+ SQL (0.1ms) PRAGMA index_list("users")
846
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
847
+ SQL (0.3ms) SELECT name
848
+ FROM sqlite_master
849
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
850
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
851
+ SQL (0.1ms) select sqlite_version(*)
852
+ SQL (0.2ms)  SELECT name
853
+ FROM sqlite_master
854
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
855
+ 
856
+ SQL (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
857
+ SQL (0.1ms) PRAGMA index_list("accounts")
858
+ SQL (1.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
859
+ SQL (0.2ms)  SELECT name
860
+ FROM sqlite_master
861
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
862
+ 
863
+ SQL (3.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
864
+ SQL (0.1ms) PRAGMA index_list("users")
865
+ SQL (1.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
866
+ SQL (0.1ms)  SELECT name
867
+ FROM sqlite_master
868
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
869
+ 
870
+ SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
871
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
872
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
873
+ SQL (0.2ms)  SELECT name
874
+ FROM sqlite_master
875
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
876
+ 
877
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
878
+ SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
879
+ SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
880
+ SQL (1.5ms)  SELECT name
881
+ FROM sqlite_master
882
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
883
+ 
884
+ SQL (0.2ms) SELECT name
885
+ FROM sqlite_master
886
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
887
+ SQL (1.5ms)  SELECT name
888
+ FROM sqlite_master
889
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
890
+ 
891
+ SQL (0.3ms) SELECT name
892
+ FROM sqlite_master
893
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
894
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
895
+ Migrating to DeviseCreateUsers (20100924132032)
896
+ Migrating to BentoCreateAccounts (20101015094218)
897
+ SQL (0.1ms) select sqlite_version(*)
898
+ SQL (0.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
899
+ SQLite3::SQLException: table "accounts" already exists: CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
900
+ SQL (0.5ms)  SELECT name
901
+ FROM sqlite_master
902
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
903
+ 
904
+ SQL (0.1ms) select sqlite_version(*)
905
+ SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
906
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
907
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
908
+ SQL (0.1ms) SELECT name
909
+ FROM sqlite_master
910
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
911
+ SQL (0.1ms)  SELECT name
912
+ FROM sqlite_master
913
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
914
+ 
915
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
916
+ Migrating to DeviseCreateUsers (20100924132032)
917
+ SQL (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
918
+ SQL (0.1ms) PRAGMA index_list("users")
919
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
920
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
921
+ Migrating to BentoCreateAccounts (20101015094218)
922
+ SQL (0.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
923
+ SQL (0.0ms) PRAGMA index_list("accounts")
924
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
925
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094218')
926
+ Migrating to BentoAddAccountIdToAccounts (20101015094219)
927
+ SQL (0.4ms)  SELECT name
928
+ FROM sqlite_master
929
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
930
+ 
931
+ SQL (0.1ms) select sqlite_version(*)
932
+ SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
933
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
934
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
935
+ SQL (0.1ms) SELECT name
936
+ FROM sqlite_master
937
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
938
+ SQL (0.1ms)  SELECT name
939
+ FROM sqlite_master
940
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
941
+ 
942
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
943
+ Migrating to DeviseCreateUsers (20100924132032)
944
+ SQL (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
945
+ SQL (0.1ms) PRAGMA index_list("users")
946
+ SQL (0.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
947
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
948
+ Migrating to BentoCreateAccounts (20101015094218)
949
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
950
+ SQL (0.1ms) PRAGMA index_list("accounts")
951
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
952
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094218')
953
+ Migrating to BentoAddAccountIdToAccounts (20101015094219)
954
+ SQL (0.2ms) ALTER TABLE "users" ADD "account_id" integer NOT NULL
955
+ SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL: ALTER TABLE "users" ADD "account_id" integer NOT NULL
956
+ SQL (0.4ms)  SELECT name
957
+ FROM sqlite_master
958
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
959
+ 
960
+ SQL (0.1ms) select sqlite_version(*)
961
+ SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
962
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
963
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
964
+ SQL (0.2ms) SELECT name
965
+ FROM sqlite_master
966
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
967
+ SQL (0.2ms)  SELECT name
968
+ FROM sqlite_master
969
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
970
+ 
971
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
972
+ Migrating to DeviseCreateUsers (20100924132032)
973
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
974
+ SQL (0.0ms) PRAGMA index_list("users")
975
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
976
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
977
+ Migrating to BentoCreateAccounts (20101015094218)
978
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
979
+ SQL (0.1ms) PRAGMA index_list("accounts")
980
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
981
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094218')
982
+ Migrating to BentoAddAccountIdToAccounts (20101015094219)
983
+ SQL (0.2ms) ALTER TABLE "users" ADD "account_id" integer NOT NULL
984
+ SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL: ALTER TABLE "users" ADD "account_id" integer NOT NULL
985
+ SQL (0.4ms)  SELECT name
986
+ FROM sqlite_master
987
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
988
+ 
989
+ SQL (0.1ms) select sqlite_version(*)
990
+ SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
991
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
992
+ SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
993
+ SQL (0.1ms) SELECT name
994
+ FROM sqlite_master
995
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
996
+ SQL (0.1ms)  SELECT name
997
+ FROM sqlite_master
998
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
999
+ 
1000
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1001
+ Migrating to DeviseCreateUsers (20100924132032)
1002
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1003
+ SQL (0.1ms) PRAGMA index_list("users")
1004
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1005
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
1006
+ Migrating to BentoCreateAccounts (20101015094514)
1007
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1008
+ SQL (1.0ms) PRAGMA index_list("accounts")
1009
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1010
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094514')
1011
+ Migrating to BentoAddAccountIdToAccounts (20101015094515)
1012
+ SQL (0.2ms) ALTER TABLE "users" ADD "account_id" integer NOT NULL
1013
+ SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL: ALTER TABLE "users" ADD "account_id" integer NOT NULL
1014
+ SQL (0.4ms)  SELECT name
1015
+ FROM sqlite_master
1016
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1017
+ 
1018
+ SQL (0.1ms) select sqlite_version(*)
1019
+ SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1020
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
1021
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1022
+ SQL (0.2ms) SELECT name
1023
+ FROM sqlite_master
1024
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1025
+ SQL (0.2ms)  SELECT name
1026
+ FROM sqlite_master
1027
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1028
+ 
1029
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1030
+ Migrating to DeviseCreateUsers (20100924132032)
1031
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1032
+ SQL (0.0ms) PRAGMA index_list("users")
1033
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1034
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
1035
+ Migrating to BentoCreateAccounts (20101015094514)
1036
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1037
+ SQL (0.1ms) PRAGMA index_list("accounts")
1038
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1039
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094514')
1040
+ Migrating to BentoAddAccountIdToAccounts (20101015094515)
1041
+ SQL (0.2ms) ALTER TABLE "users" ADD "account_id" integer NOT NULL
1042
+ SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL: ALTER TABLE "users" ADD "account_id" integer NOT NULL
1043
+ SQL (0.4ms)  SELECT name
1044
+ FROM sqlite_master
1045
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1046
+ 
1047
+ SQL (0.1ms) select sqlite_version(*)
1048
+ SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1049
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
1050
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1051
+ SQL (0.2ms) SELECT name
1052
+ FROM sqlite_master
1053
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1054
+ SQL (0.2ms)  SELECT name
1055
+ FROM sqlite_master
1056
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1057
+ 
1058
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1059
+ Migrating to DeviseCreateUsers (20100924132032)
1060
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1061
+ SQL (0.1ms) PRAGMA index_list("users")
1062
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1063
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
1064
+ Migrating to BentoCreateAccounts (20101015094514)
1065
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1066
+ SQL (0.1ms) PRAGMA index_list("accounts")
1067
+ SQL (0.7ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1068
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094514')
1069
+ Migrating to BentoAddAccountIdToAccounts (20101015094515)
1070
+ SQL (0.5ms) ALTER TABLE "users" ADD "account_id" integer
1071
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094515')
1072
+ SQL (0.2ms)  SELECT name
1073
+ FROM sqlite_master
1074
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1075
+ 
1076
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1077
+ SQL (0.1ms)  SELECT name
1078
+ FROM sqlite_master
1079
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1080
+ 
1081
+ SQL (0.1ms) PRAGMA index_list("accounts")
1082
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
1083
+ SQL (0.1ms) PRAGMA index_list("users")
1084
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
1085
+ SQL (0.2ms) SELECT name
1086
+ FROM sqlite_master
1087
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1088
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1089
+ SQL (0.1ms) select sqlite_version(*)
1090
+ SQL (0.2ms)  SELECT name
1091
+ FROM sqlite_master
1092
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1093
+ 
1094
+ SQL (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
1095
+ SQL (0.1ms) PRAGMA index_list("accounts")
1096
+ SQL (1.3ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1097
+ SQL (0.2ms)  SELECT name
1098
+ FROM sqlite_master
1099
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1100
+ 
1101
+ SQL (2.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime, "account_id" integer)
1102
+ SQL (0.1ms) PRAGMA index_list("users")
1103
+ SQL (8.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1104
+ SQL (0.3ms)  SELECT name
1105
+ FROM sqlite_master
1106
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1107
+ 
1108
+ SQL (3.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1109
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
1110
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1111
+ SQL (0.2ms)  SELECT name
1112
+ FROM sqlite_master
1113
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1114
+ 
1115
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1116
+ SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094515')
1117
+ SQL (5.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
1118
+ SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094514')
1119
+ SQL (0.7ms)  SELECT name
1120
+ FROM sqlite_master
1121
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1122
+ 
1123
+ SQL (0.3ms) SELECT name
1124
+ FROM sqlite_master
1125
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1126
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1127
+ Migrating to DeviseCreateUsers (20100924132032)
1128
+ Migrating to BentoCreateAccounts (20101015094514)
1129
+ Migrating to BentoAddAccountIdToAccounts (20101015094515)
1130
+ SQL (0.2ms) select sqlite_version(*)
1131
+ SQL (0.3ms)  SELECT name
1132
+ FROM sqlite_master
1133
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1134
+ 
1135
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1136
+ SQL (0.2ms)  SELECT name
1137
+ FROM sqlite_master
1138
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1139
+ 
1140
+ SQL (0.1ms) PRAGMA index_list("accounts")
1141
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
1142
+ SQL (0.1ms) PRAGMA index_list("users")
1143
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
1144
+ SQL (0.7ms)  SELECT name
1145
+ FROM sqlite_master
1146
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1147
+ 
1148
+ SQL (0.2ms) SELECT name
1149
+ FROM sqlite_master
1150
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1151
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1152
+ Migrating to DeviseCreateUsers (20100924132032)
1153
+ Migrating to BentoCreateAccounts (20101015094514)
1154
+ Migrating to BentoAddAccountIdToAccounts (20101015094515)
1155
+ Migrating to CreateProjects (20101015143011)
1156
+ SQL (0.1ms) select sqlite_version(*)
1157
+ SQL (0.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1158
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015143011')
1159
+ SQL (0.5ms)  SELECT name
1160
+ FROM sqlite_master
1161
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1162
+ 
1163
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1164
+ SQL (0.2ms)  SELECT name
1165
+ FROM sqlite_master
1166
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1167
+ 
1168
+ SQL (0.1ms) PRAGMA index_list("accounts")
1169
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
1170
+ SQL (0.0ms) PRAGMA index_list("projects")
1171
+ SQL (0.1ms) PRAGMA index_list("users")
1172
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
1173
+ SQL (0.2ms)  SELECT name
1174
+ FROM sqlite_master
1175
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1176
+ 
1177
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1178
+ SQL (0.1ms) select sqlite_version(*)
1179
+ SQL (0.2ms) SELECT name
1180
+ FROM sqlite_master
1181
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1182
+ SQL (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1183
+ SQL (0.1ms) PRAGMA index_list("accounts")
1184
+ SQL (1.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1185
+ SQL (0.2ms) SELECT name
1186
+ FROM sqlite_master
1187
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1188
+ SQL (1.6ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1189
+ SQL (0.2ms) SELECT name
1190
+ FROM sqlite_master
1191
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1192
+ SQL (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime, "account_id" integer) 
1193
+ SQL (0.1ms) PRAGMA index_list("users")
1194
+ SQL (1.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1195
+ SQL (0.3ms) SELECT name
1196
+ FROM sqlite_master
1197
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1198
+ SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1199
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
1200
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1201
+ SQL (0.2ms) SELECT name
1202
+ FROM sqlite_master
1203
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1204
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1205
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015143011')
1206
+ SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
1207
+ SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094514')
1208
+ SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094515')
1209
+ SQL (0.4ms)  SELECT name
1210
+ FROM sqlite_master
1211
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1212
+ 
1213
+ SQL (0.1ms) select sqlite_version(*)
1214
+ SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1215
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
1216
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1217
+ SQL (0.1ms) SELECT name
1218
+ FROM sqlite_master
1219
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1220
+ SQL (0.1ms)  SELECT name
1221
+ FROM sqlite_master
1222
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1223
+ 
1224
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1225
+ Migrating to DeviseCreateUsers (20100924132032)
1226
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1227
+ SQL (0.0ms) PRAGMA index_list("users")
1228
+ SQL (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1229
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
1230
+ Migrating to BentoCreateAccounts (20101015094514)
1231
+ SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1232
+ SQL (0.1ms) PRAGMA index_list("accounts")
1233
+ SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1234
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094514')
1235
+ Migrating to BentoAddAccountIdToAccounts (20101015094515)
1236
+ SQL (0.5ms) ALTER TABLE "users" ADD "account_id" integer
1237
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094515')
1238
+ Migrating to CreateProjects (20101015143011)
1239
+ SQL (0.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1240
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015143011')
1241
+ SQL (0.3ms)  SELECT name
1242
+ FROM sqlite_master
1243
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1244
+ 
1245
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1246
+ SQL (0.1ms)  SELECT name
1247
+ FROM sqlite_master
1248
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1249
+ 
1250
+ SQL (0.1ms) PRAGMA index_list("accounts")
1251
+ SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
1252
+ SQL (0.1ms) PRAGMA index_list("projects")
1253
+ SQL (0.1ms) PRAGMA index_list("users")
1254
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
1255
+ SQL (0.2ms)  SELECT name
1256
+ FROM sqlite_master
1257
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1258
+ 
1259
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1260
+ SQL (0.1ms) select sqlite_version(*)
1261
+ SQL (0.2ms) SELECT name
1262
+ FROM sqlite_master
1263
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1264
+ SQL (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1265
+ SQL (0.1ms) PRAGMA index_list("accounts")
1266
+ SQL (1.7ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1267
+ SQL (0.2ms) SELECT name
1268
+ FROM sqlite_master
1269
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1270
+ SQL (7.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1271
+ SQL (0.2ms) SELECT name
1272
+ FROM sqlite_master
1273
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1274
+ SQL (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime, "account_id" integer) 
1275
+ SQL (0.1ms) PRAGMA index_list("users")
1276
+ SQL (1.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1277
+ SQL (0.2ms) SELECT name
1278
+ FROM sqlite_master
1279
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1280
+ SQL (3.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1281
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
1282
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1283
+ SQL (0.2ms) SELECT name
1284
+ FROM sqlite_master
1285
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1286
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1287
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015143011')
1288
+ SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
1289
+ SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094514')
1290
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094515')