fine_print 0.1.1 → 1.0.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.
Files changed (156) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +74 -45
  3. data/Rakefile +9 -9
  4. data/app/assets/javascripts/application.js~ +16 -0
  5. data/app/assets/javascripts/fine_print/application.js +8 -2
  6. data/app/controllers/fine_print/application_controller.rb +9 -7
  7. data/app/controllers/fine_print/application_controller.rb~ +9 -7
  8. data/app/controllers/fine_print/contracts_controller.rb +79 -0
  9. data/app/controllers/fine_print/contracts_controller.rb~ +79 -0
  10. data/app/controllers/fine_print/home_controller.rb +1 -11
  11. data/app/controllers/fine_print/home_controller.rb~ +2 -11
  12. data/app/controllers/fine_print/signatures_controller.rb +14 -0
  13. data/app/controllers/fine_print/signatures_controller.rb~ +14 -0
  14. data/app/helpers/fine_print/application_helper.rb +7 -0
  15. data/app/helpers/fine_print/application_helper.rb~ +7 -0
  16. data/app/helpers/fine_print/contracts_helper.rb~ +7 -0
  17. data/app/models/fine_print/contract.rb +96 -0
  18. data/app/models/fine_print/contract.rb~ +100 -0
  19. data/app/models/fine_print/signature.rb +25 -0
  20. data/app/models/fine_print/signature.rb~ +25 -0
  21. data/app/views/fine_print/contracts/_form.html.erb +35 -0
  22. data/app/views/fine_print/contracts/_form.html.erb~ +35 -0
  23. data/app/views/fine_print/contracts/edit.html.erb +10 -0
  24. data/app/views/fine_print/contracts/index.html.erb +43 -0
  25. data/app/views/fine_print/contracts/index.html.erb~ +43 -0
  26. data/app/views/fine_print/contracts/new.html.erb +9 -0
  27. data/app/views/fine_print/contracts/new_version.html.erb +9 -0
  28. data/app/views/fine_print/contracts/show.html.erb +33 -0
  29. data/app/views/fine_print/contracts/show.html.erb~ +35 -0
  30. data/app/views/fine_print/home/index.html.erb +15 -6
  31. data/app/views/fine_print/home/index.html.erb~ +12 -4
  32. data/app/views/fine_print/signatures/index.html.erb +36 -0
  33. data/app/views/fine_print/signatures/index.html.erb~ +32 -0
  34. data/app/views/layouts/fine_print/application.html.erb +6 -0
  35. data/app/views/layouts/fine_print/application.html.erb~ +20 -0
  36. data/config/initializers/fine_print.rb +27 -44
  37. data/config/initializers/fine_print.rb~ +23 -40
  38. data/config/routes.rb +9 -3
  39. data/config/routes.rb~ +9 -4
  40. data/db/migrate/0_install_fine_print.rb +26 -0
  41. data/db/migrate/0_install_fine_print.rb~ +26 -0
  42. data/lib/fine_print/controller_additions.rb +69 -0
  43. data/lib/fine_print/controller_additions.rb~ +69 -0
  44. data/lib/fine_print/engine.rb +8 -0
  45. data/lib/fine_print/security_transgression.rb +1 -2
  46. data/lib/fine_print/utilities.rb~ +26 -0
  47. data/lib/fine_print/version.rb +1 -1
  48. data/lib/fine_print.rb +89 -42
  49. data/lib/fine_print.rb~ +89 -41
  50. data/lib/tasks/fine_print_tasks.rake +11 -8
  51. data/spec/controllers/contracts_controller_spec.rb +222 -0
  52. data/spec/controllers/contracts_controller_spec.rb~ +224 -0
  53. data/spec/controllers/home_controller_spec.rb +25 -0
  54. data/spec/controllers/home_controller_spec.rb~ +25 -0
  55. data/spec/controllers/signatures_controller_spec.rb +46 -0
  56. data/spec/controllers/signatures_controller_spec.rb~ +46 -0
  57. data/spec/dummy/README.md +1 -1
  58. data/spec/dummy/app/controllers/dummy_models_controller.rb +2 -0
  59. data/spec/dummy/app/controllers/dummy_models_controller.rb~ +29 -0
  60. data/spec/dummy/app/helpers/application_helper.rb +13 -0
  61. data/spec/dummy/app/models/dummy_user.rb +3 -0
  62. data/spec/dummy/app/models/dummy_user.rb~ +4 -0
  63. data/spec/dummy/app/models/user.rb~ +78 -0
  64. data/spec/dummy/config/application.rb +2 -2
  65. data/spec/dummy/config/application.rb~ +60 -0
  66. data/spec/dummy/config/initializers/fine_print.rb +36 -0
  67. data/spec/dummy/config/initializers/fine_print.rb~ +36 -0
  68. data/spec/dummy/config/initializers/session_store.rb +1 -1
  69. data/spec/dummy/config/initializers/session_store.rb~ +8 -0
  70. data/spec/dummy/config/initializers/wrap_parameters.rb +1 -1
  71. data/spec/dummy/config/initializers/wrap_parameters.rb~ +14 -0
  72. data/spec/dummy/config/routes.rb +1 -2
  73. data/spec/dummy/config/routes.rb~ +4 -0
  74. data/spec/dummy/db/development.sqlite3 +0 -0
  75. data/spec/dummy/db/migrate/1_create_dummy_users.rb +9 -0
  76. data/spec/dummy/db/migrate/1_create_dummy_users.rb~ +8 -0
  77. data/spec/dummy/db/schema.rb +20 -12
  78. data/spec/dummy/db/test.sqlite3 +0 -0
  79. data/spec/dummy/log/development.log +1635 -0
  80. data/spec/dummy/log/test.log +46188 -0
  81. data/spec/factories/contract.rb +25 -0
  82. data/spec/factories/contract.rb~ +26 -0
  83. data/spec/factories/dummy_user.rb +4 -0
  84. data/spec/factories/dummy_user.rb~ +6 -0
  85. data/spec/factories/signature.rb +6 -0
  86. data/spec/factories/signature.rb~ +8 -0
  87. data/spec/factories/user.rb~ +6 -0
  88. data/spec/fine_print_spec.rb~ +15 -4
  89. data/spec/lib/fine_print/controller_additions_spec.rb +20 -0
  90. data/spec/lib/fine_print/controller_additions_spec.rb~ +20 -0
  91. data/spec/lib/fine_print_spec.rb +47 -0
  92. data/spec/lib/fine_print_spec.rb~ +47 -0
  93. data/spec/models/contract_spec.rb +79 -0
  94. data/spec/models/contract_spec.rb~ +80 -0
  95. data/spec/models/signature_spec.rb +28 -0
  96. data/spec/models/signature_spec.rb~ +28 -0
  97. data/spec/spec_helper.rb +31 -0
  98. data/spec/spec_helper.rb~ +32 -0
  99. data/spec/test_helper.rb~ +15 -0
  100. metadata +153 -91
  101. data/app/assets/javascripts/fine_print/agreements.js +0 -19
  102. data/app/assets/javascripts/fine_print/agreements.js~ +0 -19
  103. data/app/assets/javascripts/fine_print/application.js~ +0 -5
  104. data/app/assets/javascripts/fine_print/dialog.js +0 -2
  105. data/app/assets/javascripts/fine_print/dialog.js~ +0 -2
  106. data/app/assets/javascripts/fine_print/user_agreements.js +0 -20
  107. data/app/assets/javascripts/fine_print/user_agreements.js~ +0 -20
  108. data/app/assets/stylesheets/fine_print/agreements.css +0 -11
  109. data/app/assets/stylesheets/fine_print/agreements.css~ +0 -11
  110. data/app/assets/stylesheets/fine_print/application.css~ +0 -60
  111. data/app/assets/stylesheets/fine_print/user_agreements.css~ +0 -3
  112. data/app/assets/stylesheets/scaffold.css~ +0 -56
  113. data/app/controllers/fine_print/agreements_controller.rb +0 -114
  114. data/app/controllers/fine_print/agreements_controller.rb~ +0 -113
  115. data/app/controllers/fine_print/user_agreements_controller.rb +0 -63
  116. data/app/controllers/fine_print/user_agreements_controller.rb~ +0 -63
  117. data/app/models/fine_print/agreement.rb +0 -50
  118. data/app/models/fine_print/agreement.rb~ +0 -50
  119. data/app/models/fine_print/user_agreement.rb +0 -19
  120. data/app/models/fine_print/user_agreement.rb~ +0 -21
  121. data/app/views/fine_print/agreements/_agreement.html.erb +0 -77
  122. data/app/views/fine_print/agreements/_agreement.html.erb~ +0 -77
  123. data/app/views/fine_print/agreements/_dialog.html.erb +0 -27
  124. data/app/views/fine_print/agreements/_dialog.html.erb~ +0 -27
  125. data/app/views/fine_print/agreements/_form.html.erb +0 -51
  126. data/app/views/fine_print/agreements/_form.html.erb~ +0 -51
  127. data/app/views/fine_print/agreements/edit.html.erb +0 -8
  128. data/app/views/fine_print/agreements/edit.html.erb~ +0 -8
  129. data/app/views/fine_print/agreements/index.html.erb +0 -32
  130. data/app/views/fine_print/agreements/index.html.erb~ +0 -32
  131. data/app/views/fine_print/agreements/new.html.erb +0 -7
  132. data/app/views/fine_print/agreements/new.html.erb~ +0 -7
  133. data/app/views/fine_print/agreements/new_version.html.erb +0 -7
  134. data/app/views/fine_print/agreements/new_version.html.erb~ +0 -7
  135. data/app/views/fine_print/agreements/show.html.erb +0 -15
  136. data/app/views/fine_print/agreements/show.html.erb~ +0 -14
  137. data/app/views/fine_print/user_agreements/cancel.js.erb +0 -1
  138. data/app/views/fine_print/user_agreements/cancel.js.erb~ +0 -2
  139. data/app/views/fine_print/user_agreements/create.js.erb +0 -2
  140. data/app/views/fine_print/user_agreements/create.js.erb~ +0 -2
  141. data/app/views/fine_print/user_agreements/index.html.erb +0 -25
  142. data/app/views/fine_print/user_agreements/index.html.erb~ +0 -25
  143. data/db/migrate/0_create_fine_print_agreements.rb~ +0 -22
  144. data/db/migrate/0_install.rb +0 -28
  145. data/db/migrate/0_install.rb~ +0 -28
  146. data/lib/fine_print/agreements_helper.rb +0 -13
  147. data/lib/fine_print/agreements_helper.rb~ +0 -11
  148. data/lib/fine_print/fine_print_agreement.rb +0 -26
  149. data/lib/fine_print/fine_print_agreement.rb~ +0 -26
  150. data/lib/fine_print/require_agreement.rb~ +0 -22
  151. data/lib/fine_print/security_transgression.rb~ +0 -3
  152. data/lib/fine_print/version.rb~ +0 -3
  153. data/lib/tasks/fine_print_tasks.rake~ +0 -42
  154. data/spec/dummy/README.md~ +0 -3
  155. data/spec/fine_print_spec.rb +0 -7
  156. data/spec/minitest_helper.rb +0 -12
@@ -39,3 +39,1638 @@ Connecting to database specified by database.yml
39
39
   (4.2ms) CREATE INDEX "index_fine_print_user_agreements_on_agreement_id" ON "fine_print_user_agreements" ("agreement_id")
40
40
   (4.2ms) CREATE INDEX "index_fine_print_user_agreements_on_user_id_and_agreement_id" ON "fine_print_user_agreements" ("user_id", "agreement_id")
41
41
   (0.1ms) SELECT version FROM "schema_migrations"
42
+ Connecting to database specified by database.yml
43
+ Connecting to database specified by database.yml
44
+ Connecting to database specified by database.yml
45
+ Connecting to database specified by database.yml
46
+ Connecting to database specified by database.yml
47
+ Connecting to database specified by database.yml
48
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
49
+ Migrating to FinePrintInstall (0)
50
+ Migrating to Install (20131022150314)
51
+  (0.0ms) select sqlite_version(*)
52
+  (0.0ms) begin transaction
53
+  (0.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "is_latest" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
54
+  (0.1ms) CREATE INDEX "index_fine_print_contracts_on_name" ON "fine_print_contracts" ("name")
55
+  (0.1ms) CREATE INDEX "index_fine_print_contracts_on_name_and_is_latest" ON "fine_print_contracts" ("name", "is_latest")
56
+  (0.1ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
57
+  (0.1ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
58
+  (0.1ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
59
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022150314')
60
+  (27.8ms) commit transaction
61
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
62
+ Connecting to database specified by database.yml
63
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
64
+  (0.1ms) select sqlite_version(*)
65
+  (12.1ms) DROP TABLE "fine_print_agreements"
66
+  (4.2ms) CREATE TABLE "fine_print_agreements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "content" text, "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
67
+  (4.1ms) CREATE INDEX "index_fine_print_agreements_on_name_and_version" ON "fine_print_agreements" ("name", "version")
68
+  (6.1ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "is_latest" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
69
+  (5.5ms) CREATE INDEX "index_fine_print_contracts_on_name_and_is_latest" ON "fine_print_contracts" ("name", "is_latest")
70
+  (5.7ms) CREATE INDEX "index_fine_print_contracts_on_name" ON "fine_print_contracts" ("name")
71
+  (5.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
72
+  (12.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
73
+  (5.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
74
+  (5.1ms) DROP TABLE "fine_print_user_agreements"
75
+  (4.6ms) CREATE TABLE "fine_print_user_agreements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "agreement_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
76
+  (5.2ms) CREATE INDEX "index_fine_print_user_agreements_on_agreement_id" ON "fine_print_user_agreements" ("agreement_id")
77
+  (4.5ms) CREATE INDEX "index_fine_print_user_agreements_on_user_id_and_agreement_id" ON "fine_print_user_agreements" ("user_id", "agreement_id")
78
+  (0.1ms) SELECT version FROM "schema_migrations"
79
+  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20131022150314')
80
+ Connecting to database specified by database.yml
81
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
82
+  (0.2ms) select sqlite_version(*)
83
+  (13.8ms) DROP TABLE "fine_print_agreements"
84
+  (4.8ms) CREATE TABLE "fine_print_agreements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "content" text, "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
85
+  (5.0ms) CREATE INDEX "index_fine_print_agreements_on_name_and_version" ON "fine_print_agreements" ("name", "version")
86
+  (5.1ms) DROP TABLE "fine_print_contracts"
87
+  (5.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "is_latest" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
88
+  (4.6ms) CREATE INDEX "index_fine_print_contracts_on_name_and_is_latest" ON "fine_print_contracts" ("name", "is_latest")
89
+  (5.4ms) CREATE INDEX "index_fine_print_contracts_on_name" ON "fine_print_contracts" ("name")
90
+  (5.1ms) DROP TABLE "fine_print_signatures"
91
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
92
+  (4.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
93
+  (4.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
94
+  (5.2ms) DROP TABLE "fine_print_user_agreements"
95
+  (4.5ms) CREATE TABLE "fine_print_user_agreements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "agreement_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
96
+  (4.7ms) CREATE INDEX "index_fine_print_user_agreements_on_agreement_id" ON "fine_print_user_agreements" ("agreement_id")
97
+  (4.6ms) CREATE INDEX "index_fine_print_user_agreements_on_user_id_and_agreement_id" ON "fine_print_user_agreements" ("user_id", "agreement_id")
98
+  (0.1ms) SELECT version FROM "schema_migrations"
99
+ Connecting to database specified by database.yml
100
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
101
+  (0.2ms) select sqlite_version(*)
102
+  (22.8ms) DROP TABLE "fine_print_agreements"
103
+  (4.8ms) CREATE TABLE "fine_print_agreements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "content" text, "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
104
+  (4.6ms) CREATE INDEX "index_fine_print_agreements_on_name_and_version" ON "fine_print_agreements" ("name", "version")
105
+  (5.7ms) DROP TABLE "fine_print_contracts"
106
+  (5.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "is_latest" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
107
+  (4.8ms) CREATE INDEX "index_fine_print_contracts_on_name_and_is_latest" ON "fine_print_contracts" ("name", "is_latest")
108
+  (5.5ms) CREATE INDEX "index_fine_print_contracts_on_name" ON "fine_print_contracts" ("name")
109
+  (5.3ms) DROP TABLE "fine_print_signatures"
110
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
111
+  (5.0ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
112
+  (5.1ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
113
+  (5.4ms) DROP TABLE "fine_print_user_agreements"
114
+  (4.8ms) CREATE TABLE "fine_print_user_agreements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "agreement_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
115
+  (5.2ms) CREATE INDEX "index_fine_print_user_agreements_on_agreement_id" ON "fine_print_user_agreements" ("agreement_id")
116
+  (5.1ms) CREATE INDEX "index_fine_print_user_agreements_on_user_id_and_agreement_id" ON "fine_print_user_agreements" ("user_id", "agreement_id")
117
+  (0.1ms) SELECT version FROM "schema_migrations"
118
+ Connecting to database specified by database.yml
119
+ Connecting to database specified by database.yml
120
+ Connecting to database specified by database.yml
121
+ Connecting to database specified by database.yml
122
+ Connecting to database specified by database.yml
123
+ Connecting to database specified by database.yml
124
+ Connecting to database specified by database.yml
125
+ Connecting to database specified by database.yml
126
+ Connecting to database specified by database.yml
127
+ Connecting to database specified by database.yml
128
+ Connecting to database specified by database.yml
129
+ Connecting to database specified by database.yml
130
+ Connecting to database specified by database.yml
131
+ Connecting to database specified by database.yml
132
+ Connecting to database specified by database.yml
133
+ Connecting to database specified by database.yml
134
+ Connecting to database specified by database.yml
135
+ Connecting to database specified by database.yml
136
+ Connecting to database specified by database.yml
137
+ Connecting to database specified by database.yml
138
+ Connecting to database specified by database.yml
139
+ Connecting to database specified by database.yml
140
+ Connecting to database specified by database.yml
141
+ Connecting to database specified by database.yml
142
+ Connecting to database specified by database.yml
143
+ Connecting to database specified by database.yml
144
+ Connecting to database specified by database.yml
145
+ Connecting to database specified by database.yml
146
+ Connecting to database specified by database.yml
147
+ Connecting to database specified by database.yml
148
+ Connecting to database specified by database.yml
149
+ Connecting to database specified by database.yml
150
+ Connecting to database specified by database.yml
151
+ Connecting to database specified by database.yml
152
+ Connecting to database specified by database.yml
153
+  (0.0ms) select sqlite_version(*)
154
+  (12.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
155
+  (5.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
156
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
157
+ Migrating to InstallFinePrint (0)
158
+  (0.1ms) begin transaction
159
+  (0.4ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "content" text NOT NULL, "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
160
+  (0.2ms) CREATE INDEX "index_fine_print_contracts_on_name_and_is_latest" ON "fine_print_contracts" ("name", "is_latest")
161
+ SQLite3::SQLException: table fine_print_contracts has no column named is_latest: CREATE INDEX "index_fine_print_contracts_on_name_and_is_latest" ON "fine_print_contracts" ("name", "is_latest")
162
+  (0.1ms) rollback transaction
163
+ Connecting to database specified by database.yml
164
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
165
+ Migrating to InstallFinePrint (0)
166
+  (0.0ms) select sqlite_version(*)
167
+  (0.0ms) begin transaction
168
+  (0.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
169
+  (0.1ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
170
+  (0.1ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
171
+  (0.1ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
172
+  (0.1ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
173
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('0')
174
+  (15.9ms) commit transaction
175
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
176
+ Connecting to database specified by database.yml
177
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
178
+  (0.1ms) select sqlite_version(*)
179
+  (13.1ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
180
+  (4.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
181
+  (5.0ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
182
+  (5.3ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
183
+  (5.1ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
184
+  (5.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
185
+  (5.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
186
+  (0.1ms) SELECT version FROM "schema_migrations"
187
+  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
188
+ Connecting to database specified by database.yml
189
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
190
+  (0.1ms) select sqlite_version(*)
191
+  (15.1ms) DROP TABLE "fine_print_contracts"
192
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
193
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
194
+  (4.9ms) DROP TABLE "fine_print_signatures"
195
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
196
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
197
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
198
+  (0.1ms) SELECT version FROM "schema_migrations"
199
+ Connecting to database specified by database.yml
200
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
201
+  (0.1ms) select sqlite_version(*)
202
+  (14.6ms) DROP TABLE "fine_print_contracts"
203
+  (4.4ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
204
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
205
+  (4.9ms) DROP TABLE "fine_print_signatures"
206
+  (4.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
207
+  (4.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
208
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
209
+  (0.1ms) SELECT version FROM "schema_migrations"
210
+ Connecting to database specified by database.yml
211
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
212
+  (0.2ms) select sqlite_version(*)
213
+  (12.5ms) DROP TABLE "fine_print_contracts"
214
+  (4.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
215
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
216
+  (5.1ms) DROP TABLE "fine_print_signatures"
217
+  (4.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
218
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
219
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
220
+  (0.1ms) SELECT version FROM "schema_migrations"
221
+ Connecting to database specified by database.yml
222
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
223
+  (0.1ms) select sqlite_version(*)
224
+  (13.8ms) DROP TABLE "fine_print_contracts"
225
+  (4.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
226
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
227
+  (4.9ms) DROP TABLE "fine_print_signatures"
228
+  (4.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
229
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
230
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
231
+  (0.1ms) SELECT version FROM "schema_migrations"
232
+ Connecting to database specified by database.yml
233
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
234
+  (0.1ms) select sqlite_version(*)
235
+  (16.1ms) DROP TABLE "fine_print_contracts"
236
+  (4.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
237
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
238
+  (5.0ms) DROP TABLE "fine_print_signatures"
239
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
240
+  (4.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
241
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
242
+  (0.1ms) SELECT version FROM "schema_migrations"
243
+ Connecting to database specified by database.yml
244
+ Connecting to database specified by database.yml
245
+ Connecting to database specified by database.yml
246
+ Connecting to database specified by database.yml
247
+ Connecting to database specified by database.yml
248
+ Connecting to database specified by database.yml
249
+ Connecting to database specified by database.yml
250
+ Connecting to database specified by database.yml
251
+ Connecting to database specified by database.yml
252
+ Connecting to database specified by database.yml
253
+ Connecting to database specified by database.yml
254
+ Connecting to database specified by database.yml
255
+ Connecting to database specified by database.yml
256
+ Connecting to database specified by database.yml
257
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
258
+  (0.1ms) select sqlite_version(*)
259
+  (13.1ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
260
+  (4.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
261
+  (4.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
262
+  (5.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
263
+  (5.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
264
+  (5.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
265
+  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
266
+  (0.1ms) SELECT version FROM "schema_migrations"
267
+  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
268
+ Connecting to database specified by database.yml
269
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
270
+  (0.1ms) select sqlite_version(*)
271
+  (14.0ms) DROP TABLE "fine_print_contracts"
272
+  (4.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
273
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
274
+  (5.2ms) DROP TABLE "fine_print_signatures"
275
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
276
+  (4.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
277
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
278
+  (0.1ms) SELECT version FROM "schema_migrations"
279
+ Connecting to database specified by database.yml
280
+ Connecting to database specified by database.yml
281
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
282
+  (0.1ms) select sqlite_version(*)
283
+  (13.5ms) DROP TABLE "fine_print_contracts"
284
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
285
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
286
+  (5.1ms) DROP TABLE "fine_print_signatures"
287
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
288
+  (4.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
289
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
290
+  (0.1ms) SELECT version FROM "schema_migrations"
291
+ Connecting to database specified by database.yml
292
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
293
+ Migrating to InstallFinePrint (0)
294
+  (0.0ms) select sqlite_version(*)
295
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
296
+ Connecting to database specified by database.yml
297
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
298
+  (0.1ms) select sqlite_version(*)
299
+  (13.6ms) DROP TABLE "fine_print_contracts"
300
+  (4.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
301
+  (4.2ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
302
+  (4.9ms) DROP TABLE "fine_print_signatures"
303
+  (4.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
304
+  (4.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
305
+  (4.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
306
+  (0.1ms) SELECT version FROM "schema_migrations"
307
+ Connecting to database specified by database.yml
308
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
309
+  (0.1ms) select sqlite_version(*)
310
+  (10.7ms) DROP TABLE "fine_print_contracts"
311
+  (4.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
312
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
313
+  (4.9ms) DROP TABLE "fine_print_signatures"
314
+  (4.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
315
+  (4.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
316
+  (4.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
317
+  (0.1ms) SELECT version FROM "schema_migrations"
318
+ Connecting to database specified by database.yml
319
+ Connecting to database specified by database.yml
320
+ Connecting to database specified by database.yml
321
+ Connecting to database specified by database.yml
322
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
323
+  (0.1ms) select sqlite_version(*)
324
+  (14.6ms) DROP TABLE "fine_print_contracts"
325
+  (4.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
326
+  (4.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
327
+  (5.1ms) DROP TABLE "fine_print_signatures"
328
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
329
+  (4.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
330
+  (4.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
331
+  (0.1ms) SELECT version FROM "schema_migrations"
332
+ Connecting to database specified by database.yml
333
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
334
+  (0.1ms) select sqlite_version(*)
335
+  (13.5ms) DROP TABLE "fine_print_contracts"
336
+  (4.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
337
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
338
+  (4.9ms) DROP TABLE "fine_print_signatures"
339
+  (4.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
340
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
341
+  (4.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
342
+  (0.1ms) SELECT version FROM "schema_migrations"
343
+ Connecting to database specified by database.yml
344
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
345
+  (0.1ms) select sqlite_version(*)
346
+  (14.2ms) DROP TABLE "fine_print_contracts"
347
+  (5.0ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
348
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
349
+  (5.0ms) DROP TABLE "fine_print_signatures"
350
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
351
+  (4.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
352
+  (5.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
353
+  (0.1ms) SELECT version FROM "schema_migrations"
354
+ Connecting to database specified by database.yml
355
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
356
+  (0.1ms) select sqlite_version(*)
357
+  (13.8ms) DROP TABLE "fine_print_contracts"
358
+  (4.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
359
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
360
+  (4.7ms) DROP TABLE "fine_print_signatures"
361
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
362
+  (4.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
363
+  (4.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
364
+  (0.1ms) SELECT version FROM "schema_migrations"
365
+ Connecting to database specified by database.yml
366
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
367
+  (0.1ms) select sqlite_version(*)
368
+  (12.7ms) DROP TABLE "fine_print_contracts"
369
+  (3.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
370
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
371
+  (4.3ms) DROP TABLE "fine_print_signatures"
372
+  (4.0ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
373
+  (4.0ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
374
+  (4.0ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
375
+  (0.1ms) SELECT version FROM "schema_migrations"
376
+ Connecting to database specified by database.yml
377
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
378
+  (0.1ms) select sqlite_version(*)
379
+  (13.7ms) DROP TABLE "fine_print_contracts"
380
+  (4.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
381
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
382
+  (5.3ms) DROP TABLE "fine_print_signatures"
383
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
384
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
385
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_type_and_u_id_and_c_id" ON "fine_print_signatures" ("user_type", "user_id", "contract_id")
386
+  (0.1ms) SELECT version FROM "schema_migrations"
387
+ Connecting to database specified by database.yml
388
+  (0.0ms) select sqlite_version(*)
389
+  (15.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
390
+  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
391
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
392
+ Migrating to InstallFinePrint (0)
393
+  (0.1ms) begin transaction
394
+  (0.4ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
395
+  (0.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
396
+  (0.2ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
397
+  (0.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
398
+  (0.2ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
399
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('0')
400
+  (9.0ms) commit transaction
401
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
402
+ Connecting to database specified by database.yml
403
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
404
+  (0.1ms) select sqlite_version(*)
405
+  (57.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
406
+  (4.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
407
+  (4.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
408
+  (4.0ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
409
+  (4.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
410
+  (4.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
411
+  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
412
+  (0.0ms) SELECT version FROM "schema_migrations"
413
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
414
+ Connecting to database specified by database.yml
415
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
416
+  (0.1ms) select sqlite_version(*)
417
+  (52.9ms) DROP TABLE "fine_print_contracts"
418
+  (3.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
419
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
420
+  (3.5ms) DROP TABLE "fine_print_signatures"
421
+  (3.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
422
+  (3.3ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
423
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
424
+  (0.0ms) SELECT version FROM "schema_migrations"
425
+ Connecting to database specified by database.yml
426
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
427
+  (0.2ms) select sqlite_version(*)
428
+  (10.8ms) DROP TABLE "fine_print_contracts"
429
+  (3.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
430
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
431
+  (3.6ms) DROP TABLE "fine_print_signatures"
432
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
433
+  (3.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
434
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
435
+  (0.0ms) SELECT version FROM "schema_migrations"
436
+ Connecting to database specified by database.yml
437
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
438
+  (0.1ms) select sqlite_version(*)
439
+  (38.5ms) DROP TABLE "fine_print_contracts"
440
+  (5.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
441
+  (7.1ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
442
+  (4.2ms) DROP TABLE "fine_print_signatures"
443
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
444
+  (8.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
445
+  (4.1ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
446
+  (0.0ms) SELECT version FROM "schema_migrations"
447
+ Connecting to database specified by database.yml
448
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
449
+  (0.2ms) select sqlite_version(*)
450
+  (42.6ms) DROP TABLE "fine_print_contracts"
451
+  (3.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
452
+  (4.0ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
453
+  (4.3ms) DROP TABLE "fine_print_signatures"
454
+  (4.2ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
455
+  (3.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
456
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
457
+  (0.0ms) SELECT version FROM "schema_migrations"
458
+ Connecting to database specified by database.yml
459
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
460
+  (0.2ms) select sqlite_version(*)
461
+  (34.6ms) DROP TABLE "fine_print_contracts"
462
+  (4.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
463
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
464
+  (4.3ms) DROP TABLE "fine_print_signatures"
465
+  (3.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
466
+  (12.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
467
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
468
+  (0.0ms) SELECT version FROM "schema_migrations"
469
+ Connecting to database specified by database.yml
470
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
471
+  (0.2ms) select sqlite_version(*)
472
+  (32.8ms) DROP TABLE "fine_print_contracts"
473
+  (3.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
474
+  (4.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
475
+  (3.8ms) DROP TABLE "fine_print_signatures"
476
+  (3.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
477
+  (3.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
478
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
479
+  (0.0ms) SELECT version FROM "schema_migrations"
480
+ Connecting to database specified by database.yml
481
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
482
+  (0.1ms) select sqlite_version(*)
483
+  (28.0ms) DROP TABLE "fine_print_contracts"
484
+  (4.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
485
+  (4.0ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
486
+  (7.6ms) DROP TABLE "fine_print_signatures"
487
+  (4.2ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
488
+  (3.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
489
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
490
+  (0.0ms) SELECT version FROM "schema_migrations"
491
+ Connecting to database specified by database.yml
492
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
493
+  (0.4ms) select sqlite_version(*)
494
+  (41.2ms) DROP TABLE "fine_print_contracts"
495
+  (4.1ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
496
+  (4.0ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
497
+  (4.2ms) DROP TABLE "fine_print_signatures"
498
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
499
+  (4.0ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
500
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
501
+  (0.0ms) SELECT version FROM "schema_migrations"
502
+ Connecting to database specified by database.yml
503
+ Connecting to database specified by database.yml
504
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
505
+ Migrating to InstallFinePrint (0)
506
+ Migrating to CreateDummyUsers (20131109013616)
507
+  (0.0ms) select sqlite_version(*)
508
+  (0.0ms) begin transaction
509
+  (0.2ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
510
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131109013616')
511
+  (28.7ms) commit transaction
512
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
513
+ Connecting to database specified by database.yml
514
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
515
+  (0.1ms) select sqlite_version(*)
516
+  (69.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
517
+  (3.9ms) DROP TABLE "fine_print_contracts"
518
+  (4.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
519
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
520
+  (3.9ms) DROP TABLE "fine_print_signatures"
521
+  (3.8ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
522
+  (3.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
523
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
524
+  (0.0ms) SELECT version FROM "schema_migrations"
525
+  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20131109013616')
526
+ Connecting to database specified by database.yml
527
+  (0.0ms) select sqlite_version(*)
528
+  (46.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
529
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
530
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
531
+ Migrating to InstallFinePrint (0)
532
+  (0.1ms) begin transaction
533
+  (0.3ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
534
+  (0.2ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
535
+  (0.1ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
536
+  (0.1ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
537
+  (0.2ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
538
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('0')
539
+  (8.9ms) commit transaction
540
+ Migrating to CreateDummyUsers (1)
541
+  (0.0ms) begin transaction
542
+  (0.2ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
543
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('1')
544
+  (5.8ms) commit transaction
545
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
546
+ Connecting to database specified by database.yml
547
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
548
+  (0.1ms) select sqlite_version(*)
549
+  (48.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
550
+  (4.0ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
551
+  (4.0ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
552
+  (4.3ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
553
+  (4.3ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
554
+  (6.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
555
+  (4.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
556
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
557
+  (0.0ms) SELECT version FROM "schema_migrations"
558
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
559
+  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
560
+ Connecting to database specified by database.yml
561
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
562
+  (0.2ms) select sqlite_version(*)
563
+  (50.0ms) DROP TABLE "dummy_users"
564
+  (3.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
565
+  (4.0ms) DROP TABLE "fine_print_contracts"
566
+  (3.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
567
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
568
+  (4.0ms) DROP TABLE "fine_print_signatures"
569
+  (4.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
570
+  (3.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
571
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
572
+  (0.1ms) SELECT version FROM "schema_migrations"
573
+ Connecting to database specified by database.yml
574
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
575
+  (0.3ms) select sqlite_version(*)
576
+  (29.1ms) DROP TABLE "dummy_users"
577
+  (5.5ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
578
+  (3.7ms) DROP TABLE "fine_print_contracts"
579
+  (5.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
580
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
581
+  (4.7ms) DROP TABLE "fine_print_signatures"
582
+  (4.2ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
583
+  (6.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
584
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
585
+  (0.0ms) SELECT version FROM "schema_migrations"
586
+ Connecting to database specified by database.yml
587
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
588
+  (0.2ms) select sqlite_version(*)
589
+  (64.0ms) DROP TABLE "dummy_users"
590
+  (4.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
591
+  (8.9ms) DROP TABLE "fine_print_contracts"
592
+  (3.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
593
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
594
+  (5.5ms) DROP TABLE "fine_print_signatures"
595
+  (4.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
596
+  (3.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
597
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
598
+  (0.0ms) SELECT version FROM "schema_migrations"
599
+ Connecting to database specified by database.yml
600
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
601
+  (0.1ms) select sqlite_version(*)
602
+  (43.8ms) DROP TABLE "dummy_users"
603
+  (4.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
604
+  (4.3ms) DROP TABLE "fine_print_contracts"
605
+  (3.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
606
+  (3.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
607
+  (3.6ms) DROP TABLE "fine_print_signatures"
608
+  (3.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
609
+  (3.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
610
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
611
+  (0.1ms) SELECT version FROM "schema_migrations"
612
+ Connecting to database specified by database.yml
613
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
614
+  (0.3ms) select sqlite_version(*)
615
+  (17.6ms) DROP TABLE "dummy_users"
616
+  (3.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
617
+  (3.9ms) DROP TABLE "fine_print_contracts"
618
+  (3.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
619
+  (5.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
620
+  (4.9ms) DROP TABLE "fine_print_signatures"
621
+  (5.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
622
+  (3.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
623
+  (5.0ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
624
+  (0.0ms) SELECT version FROM "schema_migrations"
625
+ Connecting to database specified by database.yml
626
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
627
+  (0.2ms) select sqlite_version(*)
628
+  (35.4ms) DROP TABLE "dummy_users"
629
+  (4.1ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
630
+  (3.7ms) DROP TABLE "fine_print_contracts"
631
+  (4.3ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
632
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
633
+  (3.8ms) DROP TABLE "fine_print_signatures"
634
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
635
+  (3.9ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
636
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
637
+  (0.0ms) SELECT version FROM "schema_migrations"
638
+ Connecting to database specified by database.yml
639
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
640
+  (0.3ms) select sqlite_version(*)
641
+  (46.7ms) DROP TABLE "dummy_users"
642
+  (3.7ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
643
+  (3.7ms) DROP TABLE "fine_print_contracts"
644
+  (4.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
645
+  (8.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
646
+  (4.8ms) DROP TABLE "fine_print_signatures"
647
+  (4.3ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
648
+  (3.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
649
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
650
+  (0.0ms) SELECT version FROM "schema_migrations"
651
+ Connecting to database specified by database.yml
652
+  (0.0ms) select sqlite_version(*)
653
+  (17.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
654
+  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
655
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
656
+ Migrating to InstallFinePrint (0)
657
+  (0.1ms) begin transaction
658
+  (0.4ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
659
+  (0.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
660
+  (0.2ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
661
+  (0.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
662
+  (0.2ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
663
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('0')
664
+  (7.4ms) commit transaction
665
+ Migrating to CreateDummyUsers (1)
666
+  (0.1ms) begin transaction
667
+  (0.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
668
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('1')
669
+  (7.3ms) commit transaction
670
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
671
+ Connecting to database specified by database.yml
672
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
673
+  (0.1ms) select sqlite_version(*)
674
+  (17.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
675
+  (5.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
676
+  (5.2ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
677
+  (4.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
678
+  (3.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
679
+  (4.0ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
680
+  (4.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
681
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
682
+  (0.1ms) SELECT version FROM "schema_migrations"
683
+  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
684
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
685
+ Connecting to database specified by database.yml
686
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
687
+  (0.1ms) select sqlite_version(*)
688
+  (99.8ms) DROP TABLE "dummy_users"
689
+  (3.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
690
+  (3.7ms) DROP TABLE "fine_print_contracts"
691
+  (3.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
692
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
693
+  (4.5ms) DROP TABLE "fine_print_signatures"
694
+  (4.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
695
+  (4.1ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
696
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
697
+  (0.1ms) SELECT version FROM "schema_migrations"
698
+ Connecting to database specified by database.yml
699
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
700
+  (0.2ms) select sqlite_version(*)
701
+  (2142.1ms) DROP TABLE "dummy_users"
702
+  (100.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
703
+  (4.7ms) DROP TABLE "fine_print_contracts"
704
+  (3.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
705
+  (10.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
706
+  (4.4ms) DROP TABLE "fine_print_signatures"
707
+  (5.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
708
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
709
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
710
+  (0.1ms) SELECT version FROM "schema_migrations"
711
+ Connecting to database specified by database.yml
712
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
713
+  (0.2ms) select sqlite_version(*)
714
+  (1868.3ms) DROP TABLE "dummy_users"
715
+  (3.6ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
716
+  (10.4ms) DROP TABLE "fine_print_contracts"
717
+  (3.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
718
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
719
+  (3.6ms) DROP TABLE "fine_print_signatures"
720
+  (3.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
721
+  (3.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
722
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
723
+  (0.0ms) SELECT version FROM "schema_migrations"
724
+ Connecting to database specified by database.yml
725
+ Connecting to database specified by database.yml
726
+ Connecting to database specified by database.yml
727
+ Connecting to database specified by database.yml
728
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
729
+  (0.2ms) select sqlite_version(*)
730
+  (1797.1ms) DROP TABLE "dummy_users"
731
+  (3.7ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
732
+  (3.5ms) DROP TABLE "fine_print_contracts"
733
+  (3.4ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
734
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
735
+  (3.5ms) DROP TABLE "fine_print_signatures"
736
+  (3.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
737
+  (3.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
738
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
739
+  (0.0ms) SELECT version FROM "schema_migrations"
740
+ Connecting to database specified by database.yml
741
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
742
+  (0.2ms) select sqlite_version(*)
743
+  (1053.1ms) DROP TABLE "dummy_users"
744
+  (4.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
745
+  (3.8ms) DROP TABLE "fine_print_contracts"
746
+  (3.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
747
+  (208.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
748
+  (4.0ms) DROP TABLE "fine_print_signatures"
749
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
750
+  (3.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
751
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
752
+  (0.0ms) SELECT version FROM "schema_migrations"
753
+ Connecting to database specified by database.yml
754
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
755
+  (0.2ms) select sqlite_version(*)
756
+  (2788.4ms) DROP TABLE "dummy_users"
757
+  (4.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
758
+  (3.7ms) DROP TABLE "fine_print_contracts"
759
+  (3.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
760
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
761
+  (4.6ms) DROP TABLE "fine_print_signatures"
762
+  (3.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
763
+  (3.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
764
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
765
+  (0.1ms) SELECT version FROM "schema_migrations"
766
+ Connecting to database specified by database.yml
767
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
768
+  (0.2ms) select sqlite_version(*)
769
+  (1384.9ms) DROP TABLE "dummy_users"
770
+  (4.1ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
771
+  (3.6ms) DROP TABLE "fine_print_contracts"
772
+  (3.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
773
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
774
+  (3.8ms) DROP TABLE "fine_print_signatures"
775
+  (5.0ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
776
+  (3.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
777
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
778
+  (0.1ms) SELECT version FROM "schema_migrations"
779
+ Connecting to database specified by database.yml
780
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
781
+  (0.1ms) select sqlite_version(*)
782
+  (395.9ms) DROP TABLE "dummy_users"
783
+  (3.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
784
+  (3.6ms) DROP TABLE "fine_print_contracts"
785
+  (5.0ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
786
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
787
+  (3.7ms) DROP TABLE "fine_print_signatures"
788
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
789
+  (3.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
790
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
791
+  (0.1ms) SELECT version FROM "schema_migrations"
792
+ Connecting to database specified by database.yml
793
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
794
+  (0.1ms) select sqlite_version(*)
795
+  (1977.1ms) DROP TABLE "dummy_users"
796
+  (3.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
797
+  (3.5ms) DROP TABLE "fine_print_contracts"
798
+  (3.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
799
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
800
+  (3.8ms) DROP TABLE "fine_print_signatures"
801
+  (3.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
802
+  (3.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
803
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
804
+  (0.0ms) SELECT version FROM "schema_migrations"
805
+ Connecting to database specified by database.yml
806
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
807
+  (0.2ms) select sqlite_version(*)
808
+  (1783.0ms) DROP TABLE "dummy_users"
809
+  (5.1ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
810
+  (4.3ms) DROP TABLE "fine_print_contracts"
811
+  (4.4ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
812
+  (4.1ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
813
+  (4.4ms) DROP TABLE "fine_print_signatures"
814
+  (4.8ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
815
+  (4.1ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
816
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
817
+  (0.1ms) SELECT version FROM "schema_migrations"
818
+ Connecting to database specified by database.yml
819
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
820
+  (0.2ms) select sqlite_version(*)
821
+  (2769.4ms) DROP TABLE "dummy_users"
822
+  (3.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
823
+  (3.6ms) DROP TABLE "fine_print_contracts"
824
+  (3.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
825
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
826
+  (3.8ms) DROP TABLE "fine_print_signatures"
827
+  (3.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
828
+  (210.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
829
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
830
+  (0.0ms) SELECT version FROM "schema_migrations"
831
+ Connecting to database specified by database.yml
832
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
833
+  (0.2ms) select sqlite_version(*)
834
+  (23.4ms) DROP TABLE "dummy_users"
835
+  (4.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
836
+  (3.8ms) DROP TABLE "fine_print_contracts"
837
+  (3.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
838
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
839
+  (3.9ms) DROP TABLE "fine_print_signatures"
840
+  (149.2ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
841
+  (4.1ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
842
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
843
+  (0.1ms) SELECT version FROM "schema_migrations"
844
+ Connecting to database specified by database.yml
845
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
846
+  (0.2ms) select sqlite_version(*)
847
+  (1787.1ms) DROP TABLE "dummy_users"
848
+  (3.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
849
+  (3.8ms) DROP TABLE "fine_print_contracts"
850
+  (3.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
851
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
852
+  (3.7ms) DROP TABLE "fine_print_signatures"
853
+  (189.2ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
854
+  (3.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
855
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
856
+  (0.0ms) SELECT version FROM "schema_migrations"
857
+ Connecting to database specified by database.yml
858
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
859
+  (0.2ms) select sqlite_version(*)
860
+  (1338.2ms) DROP TABLE "dummy_users"
861
+  (3.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
862
+  (3.5ms) DROP TABLE "fine_print_contracts"
863
+  (3.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
864
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
865
+  (3.7ms) DROP TABLE "fine_print_signatures"
866
+  (3.8ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
867
+  (3.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
868
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
869
+  (0.0ms) SELECT version FROM "schema_migrations"
870
+ Connecting to database specified by database.yml
871
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
872
+  (0.2ms) select sqlite_version(*)
873
+  (1506.6ms) DROP TABLE "dummy_users"
874
+  (3.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
875
+  (4.2ms) DROP TABLE "fine_print_contracts"
876
+  (3.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
877
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
878
+  (3.8ms) DROP TABLE "fine_print_signatures"
879
+  (3.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
880
+  (3.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
881
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
882
+  (0.1ms) SELECT version FROM "schema_migrations"
883
+ Connecting to database specified by database.yml
884
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
885
+  (0.2ms) select sqlite_version(*)
886
+  (3252.5ms) DROP TABLE "dummy_users"
887
+  (4.1ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
888
+  (4.0ms) DROP TABLE "fine_print_contracts"
889
+  (3.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
890
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
891
+  (3.6ms) DROP TABLE "fine_print_signatures"
892
+  (3.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
893
+  (3.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
894
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
895
+  (0.0ms) SELECT version FROM "schema_migrations"
896
+ Connecting to database specified by database.yml
897
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
898
+  (0.1ms) select sqlite_version(*)
899
+  (858.8ms) DROP TABLE "dummy_users"
900
+  (3.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
901
+  (3.6ms) DROP TABLE "fine_print_contracts"
902
+  (3.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
903
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
904
+  (3.8ms) DROP TABLE "fine_print_signatures"
905
+  (3.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
906
+  (3.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
907
+  (4.0ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
908
+  (0.1ms) SELECT version FROM "schema_migrations"
909
+ Connecting to database specified by database.yml
910
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
911
+  (0.2ms) select sqlite_version(*)
912
+  (2660.6ms) DROP TABLE "dummy_users"
913
+  (4.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
914
+  (184.8ms) DROP TABLE "fine_print_contracts"
915
+  (3.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
916
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
917
+  (3.7ms) DROP TABLE "fine_print_signatures"
918
+  (3.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
919
+  (3.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
920
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
921
+  (0.0ms) SELECT version FROM "schema_migrations"
922
+ Connecting to database specified by database.yml
923
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
924
+  (0.2ms) select sqlite_version(*)
925
+  (1019.8ms) DROP TABLE "dummy_users"
926
+  (3.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
927
+  (3.9ms) DROP TABLE "fine_print_contracts"
928
+  (3.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
929
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
930
+  (4.4ms) DROP TABLE "fine_print_signatures"
931
+  (3.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
932
+  (10.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
933
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
934
+  (0.1ms) SELECT version FROM "schema_migrations"
935
+ Connecting to database specified by database.yml
936
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
937
+  (0.2ms) select sqlite_version(*)
938
+  (1072.6ms) DROP TABLE "dummy_users"
939
+  (3.6ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
940
+  (4.1ms) DROP TABLE "fine_print_contracts"
941
+  (3.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
942
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
943
+  (4.0ms) DROP TABLE "fine_print_signatures"
944
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
945
+  (3.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
946
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
947
+  (0.0ms) SELECT version FROM "schema_migrations"
948
+ Connecting to database specified by database.yml
949
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
950
+  (0.1ms) select sqlite_version(*)
951
+  (50.2ms) DROP TABLE "dummy_users"
952
+  (3.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
953
+  (4.2ms) DROP TABLE "fine_print_contracts"
954
+  (4.0ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
955
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
956
+  (3.7ms) DROP TABLE "fine_print_signatures"
957
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
958
+  (3.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
959
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
960
+  (0.0ms) SELECT version FROM "schema_migrations"
961
+ Connecting to database specified by database.yml
962
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
963
+  (0.1ms) select sqlite_version(*)
964
+  (34.3ms) DROP TABLE "dummy_users"
965
+  (4.3ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
966
+  (3.8ms) DROP TABLE "fine_print_contracts"
967
+  (4.3ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
968
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
969
+  (4.0ms) DROP TABLE "fine_print_signatures"
970
+  (3.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
971
+  (3.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
972
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
973
+  (0.0ms) SELECT version FROM "schema_migrations"
974
+ Connecting to database specified by database.yml
975
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
976
+  (0.1ms) select sqlite_version(*)
977
+  (70.2ms) DROP TABLE "dummy_users"
978
+  (4.6ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
979
+  (4.6ms) DROP TABLE "fine_print_contracts"
980
+  (4.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
981
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
982
+  (3.9ms) DROP TABLE "fine_print_signatures"
983
+  (4.0ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
984
+  (3.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
985
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
986
+  (0.0ms) SELECT version FROM "schema_migrations"
987
+ Connecting to database specified by database.yml
988
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
989
+  (0.2ms) select sqlite_version(*)
990
+  (23.8ms) DROP TABLE "dummy_users"
991
+  (5.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
992
+  (5.0ms) DROP TABLE "fine_print_contracts"
993
+  (4.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
994
+  (5.1ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
995
+  (5.1ms) DROP TABLE "fine_print_signatures"
996
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
997
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
998
+  (3.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
999
+  (0.0ms) SELECT version FROM "schema_migrations"
1000
+ Connecting to database specified by database.yml
1001
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1002
+  (0.1ms) select sqlite_version(*)
1003
+  (16.4ms) DROP TABLE "dummy_users"
1004
+  (6.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1005
+  (5.4ms) DROP TABLE "fine_print_contracts"
1006
+  (5.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1007
+  (5.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1008
+  (5.3ms) DROP TABLE "fine_print_signatures"
1009
+  (5.3ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1010
+  (3.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1011
+  (4.2ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1012
+  (0.0ms) SELECT version FROM "schema_migrations"
1013
+ Connecting to database specified by database.yml
1014
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1015
+  (0.1ms) select sqlite_version(*)
1016
+  (13.5ms) DROP TABLE "dummy_users"
1017
+  (4.6ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1018
+  (5.7ms) DROP TABLE "fine_print_contracts"
1019
+  (4.4ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1020
+  (5.1ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1021
+  (5.1ms) DROP TABLE "fine_print_signatures"
1022
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1023
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1024
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1025
+  (0.1ms) SELECT version FROM "schema_migrations"
1026
+ Connecting to database specified by database.yml
1027
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1028
+  (0.1ms) select sqlite_version(*)
1029
+  (11.8ms) DROP TABLE "dummy_users"
1030
+  (5.2ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1031
+  (5.0ms) DROP TABLE "fine_print_contracts"
1032
+  (5.1ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1033
+  (5.2ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1034
+  (5.5ms) DROP TABLE "fine_print_signatures"
1035
+  (4.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1036
+  (4.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1037
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1038
+  (0.1ms) SELECT version FROM "schema_migrations"
1039
+ Connecting to database specified by database.yml
1040
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1041
+  (0.1ms) select sqlite_version(*)
1042
+  (13.2ms) DROP TABLE "dummy_users"
1043
+  (5.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1044
+  (4.8ms) DROP TABLE "fine_print_contracts"
1045
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1046
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1047
+  (5.1ms) DROP TABLE "fine_print_signatures"
1048
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1049
+  (4.9ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1050
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1051
+  (0.1ms) SELECT version FROM "schema_migrations"
1052
+ Connecting to database specified by database.yml
1053
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1054
+  (0.1ms) select sqlite_version(*)
1055
+  (12.8ms) DROP TABLE "dummy_users"
1056
+  (5.2ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1057
+  (5.3ms) DROP TABLE "fine_print_contracts"
1058
+  (4.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1059
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1060
+  (4.9ms) DROP TABLE "fine_print_signatures"
1061
+  (5.0ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1062
+  (4.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1063
+  (4.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1064
+  (0.1ms) SELECT version FROM "schema_migrations"
1065
+ Connecting to database specified by database.yml
1066
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1067
+  (0.1ms) select sqlite_version(*)
1068
+  (14.8ms) DROP TABLE "dummy_users"
1069
+  (5.3ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1070
+  (5.0ms) DROP TABLE "fine_print_contracts"
1071
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1072
+  (6.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1073
+  (5.3ms) DROP TABLE "fine_print_signatures"
1074
+  (4.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1075
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1076
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1077
+  (0.1ms) SELECT version FROM "schema_migrations"
1078
+ Connecting to database specified by database.yml
1079
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1080
+  (0.1ms) select sqlite_version(*)
1081
+  (14.2ms) DROP TABLE "dummy_users"
1082
+  (4.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1083
+  (4.9ms) DROP TABLE "fine_print_contracts"
1084
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1085
+  (4.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1086
+  (5.1ms) DROP TABLE "fine_print_signatures"
1087
+  (4.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1088
+  (4.8ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1089
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1090
+  (0.2ms) SELECT version FROM "schema_migrations"
1091
+ Connecting to database specified by database.yml
1092
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1093
+  (0.2ms) select sqlite_version(*)
1094
+  (14.3ms) DROP TABLE "dummy_users"
1095
+  (5.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1096
+  (5.2ms) DROP TABLE "fine_print_contracts"
1097
+  (5.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1098
+  (4.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1099
+  (5.1ms) DROP TABLE "fine_print_signatures"
1100
+  (4.8ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1101
+  (5.0ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1102
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1103
+  (0.1ms) SELECT version FROM "schema_migrations"
1104
+ Connecting to database specified by database.yml
1105
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1106
+  (0.1ms) select sqlite_version(*)
1107
+  (15.8ms) DROP TABLE "dummy_users"
1108
+  (5.5ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1109
+  (5.0ms) DROP TABLE "fine_print_contracts"
1110
+  (4.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1111
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1112
+  (5.2ms) DROP TABLE "fine_print_signatures"
1113
+  (5.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1114
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1115
+  (7.1ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1116
+  (0.1ms) SELECT version FROM "schema_migrations"
1117
+ Connecting to database specified by database.yml
1118
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1119
+  (0.1ms) select sqlite_version(*)
1120
+  (13.1ms) DROP TABLE "dummy_users"
1121
+  (4.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1122
+  (4.5ms) DROP TABLE "fine_print_contracts"
1123
+  (3.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1124
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1125
+  (4.8ms) DROP TABLE "fine_print_signatures"
1126
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1127
+  (3.3ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1128
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1129
+  (0.1ms) SELECT version FROM "schema_migrations"
1130
+ Connecting to database specified by database.yml
1131
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1132
+  (0.1ms) select sqlite_version(*)
1133
+  (14.7ms) DROP TABLE "dummy_users"
1134
+  (3.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1135
+  (4.2ms) DROP TABLE "fine_print_contracts"
1136
+  (4.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1137
+  (4.2ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1138
+  (4.6ms) DROP TABLE "fine_print_signatures"
1139
+  (3.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1140
+  (4.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1141
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1142
+  (0.1ms) SELECT version FROM "schema_migrations"
1143
+ Connecting to database specified by database.yml
1144
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1145
+  (0.1ms) select sqlite_version(*)
1146
+  (11.9ms) DROP TABLE "dummy_users"
1147
+  (3.7ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1148
+  (3.7ms) DROP TABLE "fine_print_contracts"
1149
+  (3.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1150
+  (4.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1151
+  (3.7ms) DROP TABLE "fine_print_signatures"
1152
+  (3.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1153
+  (3.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1154
+  (3.3ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1155
+  (0.0ms) SELECT version FROM "schema_migrations"
1156
+ Connecting to database specified by database.yml
1157
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1158
+  (0.1ms) select sqlite_version(*)
1159
+  (15.9ms) DROP TABLE "dummy_users"
1160
+  (5.1ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1161
+  (5.2ms) DROP TABLE "fine_print_contracts"
1162
+  (5.3ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1163
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1164
+  (5.4ms) DROP TABLE "fine_print_signatures"
1165
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1166
+  (4.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1167
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1168
+  (0.1ms) SELECT version FROM "schema_migrations"
1169
+ Connecting to database specified by database.yml
1170
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1171
+  (0.2ms) select sqlite_version(*)
1172
+  (11.1ms) DROP TABLE "dummy_users"
1173
+  (4.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1174
+  (3.7ms) DROP TABLE "fine_print_contracts"
1175
+  (4.1ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1176
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1177
+  (4.6ms) DROP TABLE "fine_print_signatures"
1178
+  (4.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1179
+  (4.3ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1180
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1181
+  (0.1ms) SELECT version FROM "schema_migrations"
1182
+ Connecting to database specified by database.yml
1183
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1184
+  (0.1ms) select sqlite_version(*)
1185
+  (13.2ms) DROP TABLE "dummy_users"
1186
+  (4.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1187
+  (4.7ms) DROP TABLE "fine_print_contracts"
1188
+  (3.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1189
+  (5.0ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1190
+  (4.9ms) DROP TABLE "fine_print_signatures"
1191
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1192
+  (4.1ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1193
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1194
+  (0.1ms) SELECT version FROM "schema_migrations"
1195
+ Connecting to database specified by database.yml
1196
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1197
+  (0.2ms) select sqlite_version(*)
1198
+  (20.7ms) DROP TABLE "dummy_users"
1199
+  (5.2ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1200
+  (5.5ms) DROP TABLE "fine_print_contracts"
1201
+  (4.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1202
+  (4.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1203
+  (5.2ms) DROP TABLE "fine_print_signatures"
1204
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1205
+  (4.3ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1206
+  (4.2ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1207
+  (0.1ms) SELECT version FROM "schema_migrations"
1208
+ Connecting to database specified by database.yml
1209
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1210
+  (0.2ms) select sqlite_version(*)
1211
+  (12.1ms) DROP TABLE "dummy_users"
1212
+  (4.3ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1213
+  (4.7ms) DROP TABLE "fine_print_contracts"
1214
+  (4.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1215
+  (4.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1216
+  (4.9ms) DROP TABLE "fine_print_signatures"
1217
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1218
+  (4.0ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1219
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1220
+  (0.0ms) SELECT version FROM "schema_migrations"
1221
+ Connecting to database specified by database.yml
1222
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1223
+  (0.2ms) select sqlite_version(*)
1224
+  (13.7ms) DROP TABLE "dummy_users"
1225
+  (4.2ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1226
+  (4.2ms) DROP TABLE "fine_print_contracts"
1227
+  (3.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1228
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1229
+  (3.6ms) DROP TABLE "fine_print_signatures"
1230
+  (3.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1231
+  (3.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1232
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1233
+  (0.1ms) SELECT version FROM "schema_migrations"
1234
+ Connecting to database specified by database.yml
1235
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1236
+  (0.1ms) select sqlite_version(*)
1237
+  (11.1ms) DROP TABLE "dummy_users"
1238
+  (4.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1239
+  (4.5ms) DROP TABLE "fine_print_contracts"
1240
+  (4.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1241
+  (3.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1242
+  (4.5ms) DROP TABLE "fine_print_signatures"
1243
+  (4.3ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1244
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1245
+  (4.1ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1246
+  (0.1ms) SELECT version FROM "schema_migrations"
1247
+ Connecting to database specified by database.yml
1248
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1249
+  (0.2ms) select sqlite_version(*)
1250
+  (11.9ms) DROP TABLE "dummy_users"
1251
+  (4.2ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1252
+  (4.7ms) DROP TABLE "fine_print_contracts"
1253
+  (4.4ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1254
+  (4.2ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1255
+  (3.8ms) DROP TABLE "fine_print_signatures"
1256
+  (4.0ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1257
+  (3.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1258
+  (4.2ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1259
+  (0.1ms) SELECT version FROM "schema_migrations"
1260
+ Connecting to database specified by database.yml
1261
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1262
+  (0.2ms) select sqlite_version(*)
1263
+  (12.9ms) DROP TABLE "dummy_users"
1264
+  (4.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1265
+  (4.9ms) DROP TABLE "fine_print_contracts"
1266
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1267
+  (4.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1268
+  (5.4ms) DROP TABLE "fine_print_signatures"
1269
+  (4.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1270
+  (6.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1271
+  (3.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1272
+  (0.0ms) SELECT version FROM "schema_migrations"
1273
+ Connecting to database specified by database.yml
1274
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1275
+  (0.1ms) select sqlite_version(*)
1276
+  (14.2ms) DROP TABLE "dummy_users"
1277
+  (5.6ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1278
+  (5.1ms) DROP TABLE "fine_print_contracts"
1279
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1280
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1281
+  (5.1ms) DROP TABLE "fine_print_signatures"
1282
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1283
+  (4.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1284
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1285
+  (0.1ms) SELECT version FROM "schema_migrations"
1286
+ Connecting to database specified by database.yml
1287
+ Connecting to database specified by database.yml
1288
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1289
+  (0.2ms) select sqlite_version(*)
1290
+  (16.9ms) DROP TABLE "dummy_users"
1291
+  (5.5ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1292
+  (5.0ms) DROP TABLE "fine_print_contracts"
1293
+  (4.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1294
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1295
+  (5.6ms) DROP TABLE "fine_print_signatures"
1296
+  (4.0ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1297
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1298
+  (4.1ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1299
+  (0.1ms) SELECT version FROM "schema_migrations"
1300
+ Connecting to database specified by database.yml
1301
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1302
+  (0.2ms) select sqlite_version(*)
1303
+  (13.5ms) DROP TABLE "dummy_users"
1304
+  (5.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1305
+  (5.0ms) DROP TABLE "fine_print_contracts"
1306
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1307
+  (5.0ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1308
+  (5.5ms) DROP TABLE "fine_print_signatures"
1309
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1310
+  (4.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1311
+  (4.3ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1312
+  (0.1ms) SELECT version FROM "schema_migrations"
1313
+ Connecting to database specified by database.yml
1314
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1315
+  (0.1ms) select sqlite_version(*)
1316
+  (15.4ms) DROP TABLE "dummy_users"
1317
+  (4.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1318
+  (5.5ms) DROP TABLE "fine_print_contracts"
1319
+  (5.0ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1320
+  (4.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1321
+  (5.3ms) DROP TABLE "fine_print_signatures"
1322
+  (5.3ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1323
+  (5.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1324
+  (4.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1325
+  (0.1ms) SELECT version FROM "schema_migrations"
1326
+ Connecting to database specified by database.yml
1327
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1328
+  (0.1ms) select sqlite_version(*)
1329
+  (13.2ms) DROP TABLE "dummy_users"
1330
+  (4.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1331
+  (5.7ms) DROP TABLE "fine_print_contracts"
1332
+  (5.0ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1333
+  (4.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1334
+  (5.0ms) DROP TABLE "fine_print_signatures"
1335
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1336
+  (4.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1337
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1338
+  (0.1ms) SELECT version FROM "schema_migrations"
1339
+ Connecting to database specified by database.yml
1340
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1341
+  (0.2ms) select sqlite_version(*)
1342
+  (14.1ms) DROP TABLE "dummy_users"
1343
+  (4.6ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1344
+  (4.8ms) DROP TABLE "fine_print_contracts"
1345
+  (4.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1346
+  (5.0ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1347
+  (5.0ms) DROP TABLE "fine_print_signatures"
1348
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1349
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1350
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1351
+  (0.1ms) SELECT version FROM "schema_migrations"
1352
+ Connecting to database specified by database.yml
1353
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1354
+  (0.2ms) select sqlite_version(*)
1355
+  (14.3ms) DROP TABLE "dummy_users"
1356
+  (4.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1357
+  (4.8ms) DROP TABLE "fine_print_contracts"
1358
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1359
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1360
+  (5.5ms) DROP TABLE "fine_print_signatures"
1361
+  (4.8ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1362
+  (4.9ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1363
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1364
+  (0.1ms) SELECT version FROM "schema_migrations"
1365
+ Connecting to database specified by database.yml
1366
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1367
+  (0.2ms) select sqlite_version(*)
1368
+  (11.5ms) DROP TABLE "dummy_users"
1369
+  (3.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1370
+  (3.8ms) DROP TABLE "fine_print_contracts"
1371
+  (4.3ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1372
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1373
+  (5.2ms) DROP TABLE "fine_print_signatures"
1374
+  (4.8ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1375
+  (4.3ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1376
+  (4.2ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1377
+  (0.1ms) SELECT version FROM "schema_migrations"
1378
+ Connecting to database specified by database.yml
1379
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1380
+  (0.1ms) select sqlite_version(*)
1381
+  (13.4ms) DROP TABLE "dummy_users"
1382
+  (5.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1383
+  (4.7ms) DROP TABLE "fine_print_contracts"
1384
+  (4.0ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1385
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1386
+  (3.8ms) DROP TABLE "fine_print_signatures"
1387
+  (4.1ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1388
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1389
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1390
+  (0.1ms) SELECT version FROM "schema_migrations"
1391
+ Connecting to database specified by database.yml
1392
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1393
+  (0.2ms) select sqlite_version(*)
1394
+  (14.3ms) DROP TABLE "dummy_users"
1395
+  (5.5ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1396
+  (5.2ms) DROP TABLE "fine_print_contracts"
1397
+  (3.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1398
+  (4.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1399
+  (4.9ms) DROP TABLE "fine_print_signatures"
1400
+  (4.4ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1401
+  (3.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1402
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1403
+  (0.1ms) SELECT version FROM "schema_migrations"
1404
+ Connecting to database specified by database.yml
1405
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1406
+  (0.1ms) select sqlite_version(*)
1407
+  (12.6ms) DROP TABLE "dummy_users"
1408
+  (4.3ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1409
+  (3.9ms) DROP TABLE "fine_print_contracts"
1410
+  (3.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1411
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1412
+  (4.4ms) DROP TABLE "fine_print_signatures"
1413
+  (5.0ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1414
+  (4.1ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1415
+  (4.3ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1416
+  (0.0ms) SELECT version FROM "schema_migrations"
1417
+ Connecting to database specified by database.yml
1418
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1419
+  (0.1ms) select sqlite_version(*)
1420
+  (13.8ms) DROP TABLE "dummy_users"
1421
+  (5.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1422
+  (4.6ms) DROP TABLE "fine_print_contracts"
1423
+  (4.1ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1424
+  (4.1ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1425
+  (4.3ms) DROP TABLE "fine_print_signatures"
1426
+  (4.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1427
+  (5.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1428
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1429
+  (0.1ms) SELECT version FROM "schema_migrations"
1430
+ Connecting to database specified by database.yml
1431
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1432
+  (0.1ms) select sqlite_version(*)
1433
+  (13.4ms) DROP TABLE "dummy_users"
1434
+  (5.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1435
+  (5.1ms) DROP TABLE "fine_print_contracts"
1436
+  (5.2ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1437
+  (4.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1438
+  (6.3ms) DROP TABLE "fine_print_signatures"
1439
+  (4.8ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1440
+  (4.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1441
+  (5.3ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1442
+  (0.1ms) SELECT version FROM "schema_migrations"
1443
+ Connecting to database specified by database.yml
1444
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1445
+  (0.1ms) select sqlite_version(*)
1446
+  (13.1ms) DROP TABLE "dummy_users"
1447
+  (5.0ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1448
+  (5.2ms) DROP TABLE "fine_print_contracts"
1449
+  (4.9ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1450
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1451
+  (4.5ms) DROP TABLE "fine_print_signatures"
1452
+  (4.3ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1453
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1454
+  (4.0ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1455
+  (0.1ms) SELECT version FROM "schema_migrations"
1456
+ Connecting to database specified by database.yml
1457
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1458
+  (0.2ms) select sqlite_version(*)
1459
+  (13.3ms) DROP TABLE "dummy_users"
1460
+  (3.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1461
+  (4.6ms) DROP TABLE "fine_print_contracts"
1462
+  (4.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1463
+  (5.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1464
+  (3.8ms) DROP TABLE "fine_print_signatures"
1465
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1466
+  (3.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1467
+  (3.7ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1468
+  (0.1ms) SELECT version FROM "schema_migrations"
1469
+ Connecting to database specified by database.yml
1470
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1471
+  (0.1ms) select sqlite_version(*)
1472
+  (13.7ms) DROP TABLE "dummy_users"
1473
+  (5.3ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1474
+  (4.9ms) DROP TABLE "fine_print_contracts"
1475
+  (4.8ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1476
+  (5.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1477
+  (5.4ms) DROP TABLE "fine_print_signatures"
1478
+  (3.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1479
+  (3.9ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1480
+  (9.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1481
+  (0.1ms) SELECT version FROM "schema_migrations"
1482
+ Connecting to database specified by database.yml
1483
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1484
+  (0.2ms) select sqlite_version(*)
1485
+  (13.1ms) DROP TABLE "dummy_users"
1486
+  (4.7ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1487
+  (5.5ms) DROP TABLE "fine_print_contracts"
1488
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1489
+  (4.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1490
+  (5.0ms) DROP TABLE "fine_print_signatures"
1491
+  (5.2ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1492
+  (4.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1493
+  (4.2ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1494
+  (0.1ms) SELECT version FROM "schema_migrations"
1495
+ Connecting to database specified by database.yml
1496
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1497
+  (0.2ms) select sqlite_version(*)
1498
+  (14.4ms) DROP TABLE "dummy_users"
1499
+  (4.2ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1500
+  (4.3ms) DROP TABLE "fine_print_contracts"
1501
+  (4.0ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1502
+  (4.3ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1503
+  (5.1ms) DROP TABLE "fine_print_signatures"
1504
+  (4.1ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1505
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1506
+  (5.3ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1507
+  (0.1ms) SELECT version FROM "schema_migrations"
1508
+ Connecting to database specified by database.yml
1509
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1510
+  (0.1ms) select sqlite_version(*)
1511
+  (13.8ms) DROP TABLE "dummy_users"
1512
+  (4.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1513
+  (4.7ms) DROP TABLE "fine_print_contracts"
1514
+  (3.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1515
+  (4.1ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1516
+  (4.7ms) DROP TABLE "fine_print_signatures"
1517
+  (4.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1518
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1519
+  (3.8ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1520
+  (0.1ms) SELECT version FROM "schema_migrations"
1521
+ Connecting to database specified by database.yml
1522
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1523
+  (0.2ms) select sqlite_version(*)
1524
+  (18.5ms) DROP TABLE "dummy_users"
1525
+  (5.3ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1526
+  (5.1ms) DROP TABLE "fine_print_contracts"
1527
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1528
+  (4.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1529
+  (4.1ms) DROP TABLE "fine_print_signatures"
1530
+  (3.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1531
+  (3.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1532
+  (4.0ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1533
+  (0.1ms) SELECT version FROM "schema_migrations"
1534
+ Connecting to database specified by database.yml
1535
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1536
+  (0.2ms) select sqlite_version(*)
1537
+  (9.3ms) DROP TABLE "dummy_users"
1538
+  (5.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1539
+  (5.3ms) DROP TABLE "fine_print_contracts"
1540
+  (5.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1541
+  (5.1ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1542
+  (5.5ms) DROP TABLE "fine_print_signatures"
1543
+  (5.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1544
+  (5.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1545
+  (5.3ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1546
+  (0.1ms) SELECT version FROM "schema_migrations"
1547
+ Connecting to database specified by database.yml
1548
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1549
+  (0.2ms) select sqlite_version(*)
1550
+  (13.6ms) DROP TABLE "dummy_users"
1551
+  (4.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1552
+  (4.8ms) DROP TABLE "fine_print_contracts"
1553
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1554
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1555
+  (5.2ms) DROP TABLE "fine_print_signatures"
1556
+  (4.7ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1557
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1558
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1559
+  (0.1ms) SELECT version FROM "schema_migrations"
1560
+ Connecting to database specified by database.yml
1561
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1562
+  (0.1ms) select sqlite_version(*)
1563
+  (14.2ms) DROP TABLE "dummy_users"
1564
+  (4.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1565
+  (5.2ms) DROP TABLE "fine_print_contracts"
1566
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1567
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1568
+  (5.0ms) DROP TABLE "fine_print_signatures"
1569
+  (4.8ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1570
+  (4.7ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1571
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1572
+  (0.1ms) SELECT version FROM "schema_migrations"
1573
+ Connecting to database specified by database.yml
1574
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1575
+  (0.1ms) select sqlite_version(*)
1576
+  (14.3ms) DROP TABLE "dummy_users"
1577
+  (4.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1578
+  (4.8ms) DROP TABLE "fine_print_contracts"
1579
+  (4.6ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1580
+  (5.1ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1581
+  (5.3ms) DROP TABLE "fine_print_signatures"
1582
+  (4.8ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1583
+  (4.6ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1584
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1585
+  (0.1ms) SELECT version FROM "schema_migrations"
1586
+ Connecting to database specified by database.yml
1587
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1588
+  (0.1ms) select sqlite_version(*)
1589
+  (13.3ms) DROP TABLE "dummy_users"
1590
+  (3.7ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1591
+  (3.9ms) DROP TABLE "fine_print_contracts"
1592
+  (3.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1593
+  (3.9ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1594
+  (4.0ms) DROP TABLE "fine_print_signatures"
1595
+  (3.9ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1596
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1597
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1598
+  (0.1ms) SELECT version FROM "schema_migrations"
1599
+ Connecting to database specified by database.yml
1600
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1601
+  (0.1ms) select sqlite_version(*)
1602
+  (13.3ms) DROP TABLE "dummy_users"
1603
+  (5.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1604
+  (4.8ms) DROP TABLE "fine_print_contracts"
1605
+  (4.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1606
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1607
+  (4.7ms) DROP TABLE "fine_print_signatures"
1608
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1609
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1610
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1611
+  (0.1ms) SELECT version FROM "schema_migrations"
1612
+ Connecting to database specified by database.yml
1613
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1614
+  (0.1ms) select sqlite_version(*)
1615
+  (13.7ms) DROP TABLE "dummy_users"
1616
+  (4.6ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1617
+  (4.6ms) DROP TABLE "fine_print_contracts"
1618
+  (4.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1619
+  (4.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1620
+  (4.8ms) DROP TABLE "fine_print_signatures"
1621
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1622
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1623
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1624
+  (0.1ms) SELECT version FROM "schema_migrations"
1625
+ Connecting to database specified by database.yml
1626
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1627
+  (0.1ms) select sqlite_version(*)
1628
+  (13.6ms) DROP TABLE "dummy_users"
1629
+  (4.4ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1630
+  (4.6ms) DROP TABLE "fine_print_contracts"
1631
+  (4.3ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1632
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1633
+  (4.7ms) DROP TABLE "fine_print_signatures"
1634
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1635
+  (4.4ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1636
+  (4.4ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1637
+  (0.1ms) SELECT version FROM "schema_migrations"
1638
+ Connecting to database specified by database.yml
1639
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1640
+  (0.1ms) select sqlite_version(*)
1641
+  (15.1ms) DROP TABLE "dummy_users"
1642
+  (4.3ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1643
+  (4.6ms) DROP TABLE "fine_print_contracts"
1644
+  (5.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1645
+  (4.7ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1646
+  (4.8ms) DROP TABLE "fine_print_signatures"
1647
+  (4.5ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1648
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1649
+  (4.3ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1650
+  (0.1ms) SELECT version FROM "schema_migrations"
1651
+ Connecting to database specified by database.yml
1652
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1653
+  (0.1ms) select sqlite_version(*)
1654
+  (13.5ms) DROP TABLE "dummy_users"
1655
+  (4.8ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1656
+  (5.0ms) DROP TABLE "fine_print_contracts"
1657
+  (4.7ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1658
+  (4.8ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1659
+  (5.8ms) DROP TABLE "fine_print_signatures"
1660
+  (5.0ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1661
+  (4.5ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1662
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1663
+  (0.1ms) SELECT version FROM "schema_migrations"
1664
+ Connecting to database specified by database.yml
1665
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1666
+  (0.1ms) select sqlite_version(*)
1667
+  (13.7ms) DROP TABLE "dummy_users"
1668
+  (4.9ms) CREATE TABLE "dummy_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "is_admin" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1669
+  (4.9ms) DROP TABLE "fine_print_contracts"
1670
+  (4.5ms) CREATE TABLE "fine_print_contracts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer, "title" varchar(255) NOT NULL, "content" text NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1671
+  (4.5ms) CREATE UNIQUE INDEX "index_fine_print_contracts_on_name_and_version" ON "fine_print_contracts" ("name", "version")
1672
+  (4.7ms) DROP TABLE "fine_print_signatures"
1673
+  (4.6ms) CREATE TABLE "fine_print_signatures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contract_id" integer NOT NULL, "user_id" integer NOT NULL, "user_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1674
+  (4.2ms) CREATE INDEX "index_fine_print_signatures_on_contract_id" ON "fine_print_signatures" ("contract_id")
1675
+  (4.6ms) CREATE UNIQUE INDEX "index_fine_print_s_on_u_id_and_u_type_and_c_id" ON "fine_print_signatures" ("user_id", "user_type", "contract_id")
1676
+  (0.1ms) SELECT version FROM "schema_migrations"