This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/db/migrate/20120407180851_add_error_field.rb
2013-01-10 22:21:23 +01:00

6 lines
133 B
Ruby

class AddErrorField < ActiveRecord::Migration
def change
add_column :feeds, :has_errors, :boolean, :default => false
end
end