diff options
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20151110125604_add_import_error_to_project.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20151110125604_add_import_error_to_project.rb b/db/migrate/20151110125604_add_import_error_to_project.rb new file mode 100644 index 00000000000..7fc990f8d0a --- /dev/null +++ b/db/migrate/20151110125604_add_import_error_to_project.rb @@ -0,0 +1,5 @@ +class AddImportErrorToProject < ActiveRecord::Migration + def change + add_column :projects, :import_error, :text + end +end |