Skip to content
This repository has been archived by the owner on Sep 17, 2019. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'upstream/staging' into staging
Browse files Browse the repository at this point in the history
Conflicts (resolved):
	.ruby-gemset
	config/schedule.rb
	config/sitemap.rb
	config/unicorn.rb
  • Loading branch information
joegatt committed Oct 10, 2013
2 parents cfffe21 + f3f826a commit 72d3df4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 17 deletions.
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@
/tmp

# Ignore other unneeded files.
.rvmrc
doc/
!sitemap.rb
*.swp
*~
.project
.DS_Store
.project
.ruby-gemset
.ruby-version
.rvmrc
doc/
sitemap.*
!sitemap.rb

Expand Down
1 change: 0 additions & 1 deletion .ruby-gemset

This file was deleted.

1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rvm:
- 2.0.0
- 2.0.0-p195

script:
- "rake db:migrate RAILS_ENV=test"
Expand Down
9 changes: 0 additions & 9 deletions db/migrate/20121214133719_change_index_name_in_cloud_notes.rb

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
class ChangeCloudNotesContentHashToBinary < ActiveRecord::Migration
def up
change_column :cloud_notes, :content_hash, :binary
remove_column :cloud_notes, :content_hash, :string
add_column :cloud_notes, :content_hash, :binary
end

def down
change_column :cloud_notes, :content_hash, :string
remove_column :cloud_notes, :content_hash, :binary
add_column :cloud_notes, :content_hash, :string
end
end

0 comments on commit 72d3df4

Please sign in to comment.