Merge branch 'master' into crawler

This commit is contained in:
Andreas Stephanides
2015-04-17 11:07:30 +02:00
41 changed files with 479 additions and 130 deletions

View File

@@ -0,0 +1,6 @@
class AddExifToFoto < ActiveRecord::Migration
def change
add_column :fotos, :exif, :string
add_column :fotos, :has_exif, :boolean
end
end

View File

@@ -0,0 +1,5 @@
class AddDateToFoto < ActiveRecord::Migration
def change
add_column :fotos, :taken_at, :timestamp
end
end