diff options
-rw-r--r-- | db/migrate/20150417000045_cleanup_the_build_model.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/db/migrate/20150417000045_cleanup_the_build_model.rb b/db/migrate/20150417000045_cleanup_the_build_model.rb index 1ade714..c33470d 100644 --- a/db/migrate/20150417000045_cleanup_the_build_model.rb +++ b/db/migrate/20150417000045_cleanup_the_build_model.rb @@ -1,9 +1,9 @@ class CleanupTheBuildModel < ActiveRecord::Migration def change - remove_column :builds, :push_data - remove_column :builds, :before_sha - remove_column :builds, :ref - remove_column :builds, :sha - remove_column :builds, :tmp_file + remove_column :builds, :push_data, :text + remove_column :builds, :before_sha, :string + remove_column :builds, :ref, :string + remove_column :builds, :sha, :string + remove_column :builds, :tmp_file, :string end end |