diff options
| author | mo khan <mo@mokhan.ca> | 2013-12-30 08:13:05 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-12-30 08:13:05 -0700 |
| commit | 55fd31cf068c6ef459db16f302b8cebfb689d41d (patch) | |
| tree | 88adeae75f43b7cf0857e638063835b6e3b69569 /db | |
| parent | 66b3458dafa78d10bc581fd2938e180d8d028f2f (diff) | |
| parent | 74148850f0c57432b1bc9c326c975c37cd335d49 (diff) | |
merge with master.
Diffstat (limited to 'db')
| -rw-r--r-- | db/migrate/20131229022014_drop_table_activities.rb | 5 | ||||
| -rw-r--r-- | db/migrate/20131230013944_add_image_processing_to_photos.rb | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20131229022014_drop_table_activities.rb b/db/migrate/20131229022014_drop_table_activities.rb new file mode 100644 index 00000000..e0bf13eb --- /dev/null +++ b/db/migrate/20131229022014_drop_table_activities.rb @@ -0,0 +1,5 @@ +class DropTableActivities < ActiveRecord::Migration + def change + drop_table :activities + end +end diff --git a/db/migrate/20131230013944_add_image_processing_to_photos.rb b/db/migrate/20131230013944_add_image_processing_to_photos.rb new file mode 100644 index 00000000..ae4c7766 --- /dev/null +++ b/db/migrate/20131230013944_add_image_processing_to_photos.rb @@ -0,0 +1,5 @@ +class AddImageProcessingToPhotos < ActiveRecord::Migration + def change + add_column :photos, :image_processing, :boolean + end +end |
