Skip to content

Commit

Permalink
Update fine_print gem to 3.1.0
Browse files Browse the repository at this point in the history
Close #193
  • Loading branch information
karenc committed Jan 29, 2016
1 parent 5d798a2 commit 73007f3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -39,7 +39,7 @@ gem 'openstax_rescue_from', '~> 1.5.0'

gem "keyword_search", '~> 1.5.0'

gem 'fine_print', '~> 3.0.0'
gem 'fine_print', '~> 3.1.0'

gem 'action_interceptor', '~> 1.0.0'

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Expand Up @@ -107,7 +107,7 @@ GEM
railties (>= 3.0.0)
faraday (0.9.0)
multipart-post (>= 1.2, < 3)
fine_print (3.0.0)
fine_print (3.1.0)
action_interceptor (>= 1.0)
jquery-rails
rails (>= 3.1)
Expand Down Expand Up @@ -349,7 +349,7 @@ DEPENDENCIES
delayed_job_active_record
doorkeeper (~> 1.4.2)
factory_girl_rails
fine_print (~> 3.0.0)
fine_print (~> 3.1.0)
jbuilder
jquery-rails
jquery-ui-rails
Expand Down
@@ -0,0 +1,7 @@
# This migration comes from fine_print (originally 1)
class AddImplicitSignatures < ActiveRecord::Migration
def change
add_column :fine_print_signatures, :is_implicit,
:boolean, null: false, default: false
end
end
13 changes: 7 additions & 6 deletions db/schema.rb
Expand Up @@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20151202132845) do
ActiveRecord::Schema.define(:version => 20160129192919) do

create_table "application_groups", :force => true do |t|
t.integer "application_id", :null => false
Expand Down Expand Up @@ -88,11 +88,12 @@
end

create_table "fine_print_signatures", :force => true do |t|
t.integer "contract_id", :null => false
t.integer "user_id", :null => false
t.string "user_type", :null => false
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.integer "contract_id", :null => false
t.integer "user_id", :null => false
t.string "user_type", :null => false
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.boolean "is_implicit", :default => false, :null => false
t.index ["contract_id"], :name => "index_fine_print_signatures_on_contract_id"
t.index ["user_id", "user_type", "contract_id"], :name => "index_fine_print_s_on_u_id_and_u_type_and_c_id", :unique => true
end
Expand Down

0 comments on commit 73007f3

Please sign in to comment.