Sha256: 7bc36151a12cdf7188aecf90b91930441133bc2703f010ee548628ea5806eaa6

Contents?: true

Size: 286 Bytes

Versions: 1

Compression:

Stored size: 286 Bytes

Contents

# This migration comes from calagator (originally 20150206085809)
class RemoveUpdates < ActiveRecord::Migration
  def up
    drop_table :updates
  end

  def down
    create_table :updates do |t|
      t.integer "source_id"
      t.text    "status"
      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
calagator-0.0.1.pre1 spec/dummy/db/migrate/20150309023333_remove_updates.calagator.rb