From ae2741ecb0e9d61372494f45fa1fb9964650b04b Mon Sep 17 00:00:00 2001 From: Andreas Stephanides Date: Mon, 30 Sep 2013 21:18:42 +0200 Subject: [PATCH] studium + picture --- db/migrate/20130929184646_add_picture_to_studien.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20130929184646_add_picture_to_studien.rb diff --git a/db/migrate/20130929184646_add_picture_to_studien.rb b/db/migrate/20130929184646_add_picture_to_studien.rb new file mode 100644 index 0000000..10e9489 --- /dev/null +++ b/db/migrate/20130929184646_add_picture_to_studien.rb @@ -0,0 +1,5 @@ +class AddPictureToStudien < ActiveRecord::Migration + def change + add_column :studien, :picture, :string + end +end