diff --git a/app/views/tasks/processed.rhtml b/app/views/tasks/processed.rhtml index d0db19a..e0ff929 100644 --- a/app/views/tasks/processed.rhtml +++ b/app/views/tasks/processed.rhtml @@ -5,7 +5,22 @@ <% else %> <% end %> diff --git a/db/migrate/025_add_created_at_field_to_task.rb b/db/migrate/025_add_created_at_field_to_task.rb new file mode 100644 index 0000000..3764aeb --- /dev/null +++ b/db/migrate/025_add_created_at_field_to_task.rb @@ -0,0 +1,9 @@ +class AddCreatedAtFieldToTask < ActiveRecord::Migration + def self.up + add_column :tasks, :created_at, :datetime + end + + def self.down + remove_column :tasks, :created_at + end +end -- libgit2 0.21.2