From 5da6e74c1c55a9c102b65c6385b5b156077c6aeb Mon Sep 17 00:00:00 2001 From: Ralf Teusner Date: Thu, 8 Oct 2015 18:57:48 +0200 Subject: [PATCH] forgot to push the according migration to hiding the file tree... --- db/migrate/20150922125415_add_hide_file_tree_to_exercises.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20150922125415_add_hide_file_tree_to_exercises.rb diff --git a/db/migrate/20150922125415_add_hide_file_tree_to_exercises.rb b/db/migrate/20150922125415_add_hide_file_tree_to_exercises.rb new file mode 100644 index 00000000..9890c35b --- /dev/null +++ b/db/migrate/20150922125415_add_hide_file_tree_to_exercises.rb @@ -0,0 +1,5 @@ +class AddHideFileTreeToExercises < ActiveRecord::Migration + def change + add_column :exercises, :hide_file_tree, :boolean + end +end