Sha256: 660a620bfecf4d33063fd9735e6ee56eaabb7cc99493835e7733b86366e97a80

Contents?: true

Size: 330 Bytes

Versions: 10

Compression:

Stored size: 330 Bytes

Contents

class DropUnusedTables < ActiveRecord::Migration
  def up
    remove_column :projects, :gemnasium_slug
    remove_column :users, :old_environments_subscribed_to
  end

  def down
    add_column :projects, :gemnasium_slug, :string
    add_column :users, :old_environments_subscribed_to, :string, default: "", null: false
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
houston-core-0.9.2 db/migrate/20151228183704_drop_unused_tables.rb
houston-core-0.9.1 db/migrate/20151228183704_drop_unused_tables.rb
houston-core-0.9.0 db/migrate/20151228183704_drop_unused_tables.rb
houston-core-0.9.0.rc1 db/migrate/20151228183704_drop_unused_tables.rb
houston-core-0.8.4 db/migrate/20151228183704_drop_unused_tables.rb
houston-core-0.8.3 db/migrate/20151228183704_drop_unused_tables.rb
houston-core-0.8.2 db/migrate/20151228183704_drop_unused_tables.rb
houston-core-0.8.1 db/migrate/20151228183704_drop_unused_tables.rb
houston-core-0.8.0 db/migrate/20151228183704_drop_unused_tables.rb
houston-core-0.8.0.pre2 db/migrate/20151228183704_drop_unused_tables.rb