validation_issues 0.1.2 → 0.2.0
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.
@@ -18,6 +18,7 @@ module ValidationIssues
|
|
18
18
|
vi ||= ValidationIssue.new(:form_name => form_name, :issue_type => self.class.to_s)
|
19
19
|
|
20
20
|
self.errors.map {|k,v| k }.uniq.each do |error_field|
|
21
|
+
vi.issue_hash = {} if vi.issue_hash.blank?
|
21
22
|
vi.issue_hash[error_field] ||= 0
|
22
23
|
vi.issue_hash[error_field] = vi.issue_hash[error_field] + 1
|
23
24
|
end
|
metadata
CHANGED
@@ -1,49 +1,57 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: validation_issues
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
4
5
|
prerelease:
|
5
|
-
version: 0.1.2
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- David Henner
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2013-05-02 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
16
15
|
name: rails
|
17
|
-
|
18
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
19
17
|
none: false
|
20
|
-
requirements:
|
18
|
+
requirements:
|
21
19
|
- - ~>
|
22
|
-
- !ruby/object:Gem::Version
|
20
|
+
- !ruby/object:Gem::Version
|
23
21
|
version: 3.2.6
|
24
22
|
type: :runtime
|
25
|
-
version_requirements: *id001
|
26
|
-
- !ruby/object:Gem::Dependency
|
27
|
-
name: sqlite3
|
28
23
|
prerelease: false
|
29
|
-
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 3.2.6
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: sqlite3
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
30
33
|
none: false
|
31
|
-
requirements:
|
32
|
-
- -
|
33
|
-
- !ruby/object:Gem::Version
|
34
|
-
version:
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
35
38
|
type: :development
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description: To ensure Validations that continue to have issues are addressed by developers. This
|
47
|
+
is done by logging the failure. When a specific failure continues to be an issue,
|
48
|
+
a developer can look into the problem.
|
49
|
+
email:
|
39
50
|
- drhenner@gmail.com
|
40
51
|
executables: []
|
41
|
-
|
42
52
|
extensions: []
|
43
|
-
|
44
53
|
extra_rdoc_files: []
|
45
|
-
|
46
|
-
files:
|
54
|
+
files:
|
47
55
|
- app/assets/javascripts/validation_issues/rails.js
|
48
56
|
- app/assets/javascripts/validation_issues.js
|
49
57
|
- app/assets/stylesheets/scaffold.css
|
@@ -96,12 +104,8 @@ files:
|
|
96
104
|
- test/dummy/config/locales/en.yml
|
97
105
|
- test/dummy/config/routes.rb
|
98
106
|
- test/dummy/config.ru
|
99
|
-
- test/dummy/db/development.sqlite3
|
100
107
|
- test/dummy/db/migrate/20120722183345_create_users.rb
|
101
108
|
- test/dummy/db/schema.rb
|
102
|
-
- test/dummy/db/test.sqlite3
|
103
|
-
- test/dummy/log/development.log
|
104
|
-
- test/dummy/log/test.log
|
105
109
|
- test/dummy/public/404.html
|
106
110
|
- test/dummy/public/422.html
|
107
111
|
- test/dummy/public/500.html
|
@@ -121,32 +125,29 @@ files:
|
|
121
125
|
- test/validation_issues_test.rb
|
122
126
|
homepage: http://www.ror-e.com
|
123
127
|
licenses: []
|
124
|
-
|
125
128
|
post_install_message:
|
126
129
|
rdoc_options: []
|
127
|
-
|
128
|
-
require_paths:
|
130
|
+
require_paths:
|
129
131
|
- lib
|
130
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
132
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
131
133
|
none: false
|
132
|
-
requirements:
|
133
|
-
- -
|
134
|
-
- !ruby/object:Gem::Version
|
135
|
-
version:
|
136
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - ! '>='
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0'
|
138
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
139
|
none: false
|
138
|
-
requirements:
|
139
|
-
- -
|
140
|
-
- !ruby/object:Gem::Version
|
141
|
-
version:
|
140
|
+
requirements:
|
141
|
+
- - ! '>='
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '0'
|
142
144
|
requirements: []
|
143
|
-
|
144
145
|
rubyforge_project:
|
145
|
-
rubygems_version: 1.8.
|
146
|
+
rubygems_version: 1.8.25
|
146
147
|
signing_key:
|
147
148
|
specification_version: 3
|
148
149
|
summary: To ensure Validations that continue to have issues are addressed by developers.
|
149
|
-
test_files:
|
150
|
+
test_files:
|
150
151
|
- test/acts_as_validation_issues_test.rb
|
151
152
|
- test/dummy/app/assets/javascripts/application.js
|
152
153
|
- test/dummy/app/assets/stylesheets/application.css
|
@@ -170,12 +171,8 @@ test_files:
|
|
170
171
|
- test/dummy/config/locales/en.yml
|
171
172
|
- test/dummy/config/routes.rb
|
172
173
|
- test/dummy/config.ru
|
173
|
-
- test/dummy/db/development.sqlite3
|
174
174
|
- test/dummy/db/migrate/20120722183345_create_users.rb
|
175
175
|
- test/dummy/db/schema.rb
|
176
|
-
- test/dummy/db/test.sqlite3
|
177
|
-
- test/dummy/log/development.log
|
178
|
-
- test/dummy/log/test.log
|
179
176
|
- test/dummy/public/404.html
|
180
177
|
- test/dummy/public/422.html
|
181
178
|
- test/dummy/public/500.html
|
@@ -193,4 +190,3 @@ test_files:
|
|
193
190
|
- test/unit/helpers/validation_issues_helper_test.rb
|
194
191
|
- test/unit/validation_issue_test.rb
|
195
192
|
- test/validation_issues_test.rb
|
196
|
-
has_rdoc:
|
Binary file
|
data/test/dummy/db/test.sqlite3
DELETED
Binary file
|
@@ -1,462 +0,0 @@
|
|
1
|
-
Connecting to database specified by database.yml
|
2
|
-
Connecting to database specified by database.yml
|
3
|
-
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
4
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
5
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
6
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
7
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
8
|
-
Migrating to CreateUsers (20120722183345)
|
9
|
-
[1m[35m (0.0ms)[0m begin transaction
|
10
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "nick_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
11
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120722183345')
|
12
|
-
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
13
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
14
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
15
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
16
|
-
Connecting to database specified by database.yml
|
17
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
18
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
19
|
-
[1m[36m (1.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "nick_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
20
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
21
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
22
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
23
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
24
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120722183345')
|
25
|
-
Connecting to database specified by database.yml
|
26
|
-
[1m[36m (0.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
27
|
-
Migrating to CreateUsers (20120722183345)
|
28
|
-
Migrating to CreateValidationIssues (20120722204204)
|
29
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
30
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31
|
-
[1m[35m (0.4ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text NOT NULL, "issue_count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
32
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
33
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")
|
34
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
35
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
36
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
37
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
38
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
39
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
40
|
-
[1m[36m (0.4ms)[0m [1mCREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")[0m
|
41
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120722204204')
|
42
|
-
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
43
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
44
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
45
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
46
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
47
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
48
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
49
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
50
|
-
Connecting to database specified by database.yml
|
51
|
-
[1m[36m (0.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
52
|
-
Migrating to CreateUsers (20120722183345)
|
53
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
54
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
55
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
56
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
57
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
58
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
59
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
60
|
-
Connecting to database specified by database.yml
|
61
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
62
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
63
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "nick_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
64
|
-
[1m[35m (1.4ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text NOT NULL, "issue_count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
65
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
66
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")
|
67
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
68
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
69
|
-
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")[0m
|
70
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
71
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_form_name')[0m
|
72
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
73
|
-
[1m[36m (1.6ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
74
|
-
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
75
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
76
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
77
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
78
|
-
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120722204204')
|
79
|
-
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120722183345')[0m
|
80
|
-
Connecting to database specified by database.yml
|
81
|
-
[1m[36m (0.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
82
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
83
|
-
Migrating to CreateValidationIssues (20120722204204)
|
84
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
85
|
-
[1m[35m (0.0ms)[0m begin transaction
|
86
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
87
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
88
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
89
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
90
|
-
[1m[36m (1.3ms)[0m [1mDROP INDEX "index_validation_issues_on_form_name_and_issue_type"[0m
|
91
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
92
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
93
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
94
|
-
[1m[36m (0.7ms)[0m [1mDROP INDEX "index_validation_issues_on_issue_type"[0m
|
95
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
96
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_form_name')[0m
|
97
|
-
[1m[35m (0.5ms)[0m DROP INDEX "index_validation_issues_on_form_name"
|
98
|
-
[1m[36m (0.8ms)[0m [1mDROP TABLE "validation_issues"[0m
|
99
|
-
[1m[35m (0.1ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120722204204'
|
100
|
-
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
101
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
102
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
103
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
104
|
-
Connecting to database specified by database.yml
|
105
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
106
|
-
Migrating to CreateUsers (20120722183345)
|
107
|
-
Migrating to CreateValidationIssues (20120722204204)
|
108
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
109
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
110
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text DEFAULT '', "issue_count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
111
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
112
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")
|
113
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
114
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
115
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
116
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
117
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
118
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
119
|
-
[1m[36m (0.4ms)[0m [1mCREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")[0m
|
120
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120722204204')
|
121
|
-
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
|
122
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
123
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
124
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
125
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
126
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
127
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
128
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
129
|
-
Connecting to database specified by database.yml
|
130
|
-
[1m[36m (0.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
131
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
132
|
-
Migrating to CreateValidationIssues (20120722204204)
|
133
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
134
|
-
[1m[35m (0.0ms)[0m begin transaction
|
135
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
136
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
137
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
138
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
139
|
-
[1m[36m (0.8ms)[0m [1mDROP INDEX "index_validation_issues_on_form_name_and_issue_type"[0m
|
140
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
141
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
142
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
143
|
-
[1m[36m (0.6ms)[0m [1mDROP INDEX "index_validation_issues_on_issue_type"[0m
|
144
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
145
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_form_name')[0m
|
146
|
-
[1m[35m (0.5ms)[0m DROP INDEX "index_validation_issues_on_form_name"
|
147
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "validation_issues"[0m
|
148
|
-
[1m[35m (0.1ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120722204204'
|
149
|
-
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
150
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
151
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
152
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
153
|
-
Connecting to database specified by database.yml
|
154
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
155
|
-
Migrating to CreateUsers (20120722183345)
|
156
|
-
Migrating to CreateValidationIssues (20120722204204)
|
157
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
158
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
159
|
-
[1m[35m (0.4ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text DEFAULT '', "issue_count" integer, "success_count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
160
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
161
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")
|
162
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
163
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
164
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
165
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
166
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
167
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
168
|
-
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")[0m
|
169
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120722204204')
|
170
|
-
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
171
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
172
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
173
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
174
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
175
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
176
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
177
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
178
|
-
Connecting to database specified by database.yml
|
179
|
-
[1m[36m (0.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
180
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
181
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
182
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
183
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
184
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
185
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
186
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
187
|
-
Connecting to database specified by database.yml
|
188
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
189
|
-
Migrating to CreateUsers (20120722183345)
|
190
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
191
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
192
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
193
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
194
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
195
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
196
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
197
|
-
Connecting to database specified by database.yml
|
198
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
199
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
200
|
-
[1m[36m (1.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "nick_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
201
|
-
[1m[35m (1.4ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text DEFAULT '', "issue_count" integer, "success_count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
202
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
203
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")
|
204
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
205
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
206
|
-
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")[0m
|
207
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
208
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_form_name')[0m
|
209
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
210
|
-
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
211
|
-
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
212
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
213
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
214
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
215
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120722204204')
|
216
|
-
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120722183345')[0m
|
217
|
-
Connecting to database specified by database.yml
|
218
|
-
[1m[36m (0.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
219
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
220
|
-
Migrating to CreateValidationIssues (20120722204204)
|
221
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
222
|
-
[1m[35m (0.0ms)[0m begin transaction
|
223
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
224
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
225
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
226
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
227
|
-
[1m[36m (0.7ms)[0m [1mDROP INDEX "index_validation_issues_on_form_name_and_issue_type"[0m
|
228
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
229
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
230
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
231
|
-
[1m[36m (0.6ms)[0m [1mDROP INDEX "index_validation_issues_on_issue_type"[0m
|
232
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
233
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_form_name')[0m
|
234
|
-
[1m[35m (0.3ms)[0m DROP INDEX "index_validation_issues_on_form_name"
|
235
|
-
[1m[36m (0.5ms)[0m [1mDROP TABLE "validation_issues"[0m
|
236
|
-
[1m[35m (0.1ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120722204204'
|
237
|
-
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
238
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
239
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
240
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
241
|
-
Connecting to database specified by database.yml
|
242
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
243
|
-
Migrating to CreateUsers (20120722183345)
|
244
|
-
Migrating to CreateValidationIssues (20120722204204)
|
245
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
246
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
247
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text DEFAULT '', "issue_count" integer DEFAULT 0, "success_count" integer DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
248
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
249
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")
|
250
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
251
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
252
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
253
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
254
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
255
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
256
|
-
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")[0m
|
257
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120722204204')
|
258
|
-
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
259
|
-
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
260
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
261
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
262
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
263
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
264
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
265
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
266
|
-
Connecting to database specified by database.yml
|
267
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
268
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
269
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
270
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
271
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
272
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
273
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
274
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
275
|
-
Connecting to database specified by database.yml
|
276
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
277
|
-
Migrating to CreateUsers (20120722183345)
|
278
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
279
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
280
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
281
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
282
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
283
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
284
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
285
|
-
Connecting to database specified by database.yml
|
286
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
287
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
288
|
-
[1m[36m (1.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "nick_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
289
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text DEFAULT '', "issue_count" integer DEFAULT 0, "success_count" integer DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
290
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
291
|
-
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")
|
292
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
293
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
294
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")[0m
|
295
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
296
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_form_name')[0m
|
297
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
298
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
299
|
-
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
300
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
301
|
-
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
302
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
303
|
-
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120722204204')
|
304
|
-
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120722183345')[0m
|
305
|
-
Connecting to database specified by database.yml
|
306
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
307
|
-
Migrating to CreateUsers (20120722183345)
|
308
|
-
Migrating to CreateValidationIssues (20120722204204)
|
309
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
310
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
311
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
312
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
313
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
314
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
315
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
316
|
-
Connecting to database specified by database.yml
|
317
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
318
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
319
|
-
Migrating to CreateValidationIssues (20120722204204)
|
320
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
321
|
-
[1m[35m (0.0ms)[0m begin transaction
|
322
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
323
|
-
[1m[35m (0.1ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
324
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
325
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
326
|
-
[1m[36m (0.4ms)[0m [1mDROP INDEX "index_validation_issues_on_form_name_and_issue_type"[0m
|
327
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
328
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
329
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
330
|
-
[1m[36m (0.3ms)[0m [1mDROP INDEX "index_validation_issues_on_issue_type"[0m
|
331
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
332
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_form_name')[0m
|
333
|
-
[1m[35m (0.1ms)[0m DROP INDEX "index_validation_issues_on_form_name"
|
334
|
-
[1m[36m (0.1ms)[0m [1mDROP TABLE "validation_issues"[0m
|
335
|
-
[1m[35m (0.1ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120722204204'
|
336
|
-
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
337
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
338
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
339
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
340
|
-
Connecting to database specified by database.yml
|
341
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
342
|
-
Migrating to CreateUsers (20120722183345)
|
343
|
-
Migrating to CreateValidationIssues (20120722204204)
|
344
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
345
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
346
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text DEFAULT '', "issue_count" integer DEFAULT 0, "success_count" integer DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
347
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
348
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")
|
349
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
350
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
351
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
352
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
353
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
354
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
355
|
-
[1m[36m (0.4ms)[0m [1mCREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")[0m
|
356
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120722204204')
|
357
|
-
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
358
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
359
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
360
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
361
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
362
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
363
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
364
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
365
|
-
Connecting to database specified by database.yml
|
366
|
-
[1m[36m (0.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
367
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
368
|
-
Migrating to CreateValidationIssues (20120722204204)
|
369
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
370
|
-
[1m[35m (0.0ms)[0m begin transaction
|
371
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
372
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
373
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
374
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
375
|
-
[1m[36m (1.2ms)[0m [1mDROP INDEX "index_validation_issues_on_form_name_and_issue_type"[0m
|
376
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
377
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
378
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
379
|
-
[1m[36m (0.7ms)[0m [1mDROP INDEX "index_validation_issues_on_issue_type"[0m
|
380
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
381
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_form_name')[0m
|
382
|
-
[1m[35m (0.3ms)[0m DROP INDEX "index_validation_issues_on_form_name"
|
383
|
-
[1m[36m (0.6ms)[0m [1mDROP TABLE "validation_issues"[0m
|
384
|
-
[1m[35m (0.1ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120722204204'
|
385
|
-
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
386
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
387
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
388
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
389
|
-
Connecting to database specified by database.yml
|
390
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
391
|
-
Migrating to CreateUsers (20120722183345)
|
392
|
-
Migrating to CreateValidationIssues (20120722204204)
|
393
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
394
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
395
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text DEFAULT '', "issue_count" integer DEFAULT 0, "success_count" integer DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
396
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
397
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")
|
398
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
399
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
400
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
401
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
402
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
403
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
404
|
-
[1m[36m (0.4ms)[0m [1mCREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")[0m
|
405
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120722204204')
|
406
|
-
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
407
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
408
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
409
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
410
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
411
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
412
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
413
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
414
|
-
Connecting to database specified by database.yml
|
415
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
416
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
417
|
-
Migrating to CreateValidationIssues (20120722204204)
|
418
|
-
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
419
|
-
[1m[35m (0.0ms)[0m begin transaction
|
420
|
-
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
421
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
422
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
423
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
424
|
-
[1m[36m (0.3ms)[0m [1mDROP INDEX "index_validation_issues_on_form_name_and_issue_type"[0m
|
425
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
426
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
427
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
428
|
-
[1m[36m (0.3ms)[0m [1mDROP INDEX "index_validation_issues_on_issue_type"[0m
|
429
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
430
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_form_name')[0m
|
431
|
-
[1m[35m (0.1ms)[0m DROP INDEX "index_validation_issues_on_form_name"
|
432
|
-
[1m[36m (0.2ms)[0m [1mDROP TABLE "validation_issues"[0m
|
433
|
-
[1m[35m (0.1ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120722204204'
|
434
|
-
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
435
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
436
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
437
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
438
|
-
Connecting to database specified by database.yml
|
439
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
440
|
-
Migrating to CreateUsers (20120722183345)
|
441
|
-
Migrating to CreateValidationIssues (20120722204204)
|
442
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
443
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
444
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "validation_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issue_type" varchar(255), "form_name" varchar(255) NOT NULL, "issue_hash" text NOT NULL, "notes" text DEFAULT '', "issue_count" integer DEFAULT 0, "success_count" integer DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
445
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
446
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_validation_issues_on_form_name" ON "validation_issues" ("form_name")
|
447
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
448
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
449
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_validation_issues_on_issue_type" ON "validation_issues" ("issue_type")[0m
|
450
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("validation_issues")
|
451
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
452
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|
453
|
-
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_validation_issues_on_form_name_and_issue_type" ON "validation_issues" ("form_name", "issue_type")[0m
|
454
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120722204204')
|
455
|
-
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
456
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
457
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
458
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
459
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("validation_issues")[0m
|
460
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name_and_issue_type')
|
461
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_validation_issues_on_issue_type')[0m
|
462
|
-
[1m[35m (0.0ms)[0m PRAGMA index_info('index_validation_issues_on_form_name')
|