summaryrefslogtreecommitdiff
path: root/db/ci/migrate/20150417000045_cleanup_the_build_model.rb
blob: c33470da20e42ac33c7019b49e8766f353aa487d (plain)
1
2
3
4
5
6
7
8
9
class CleanupTheBuildModel < ActiveRecord::Migration
  def change
    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