Sha256: f38a354c7d913087c192846b37a2c1f73f1246ba2bbda5c1feee415a2e20a9a3

Contents?: true

Size: 213 Bytes

Versions: 11

Compression:

Stored size: 213 Bytes

Contents

# -*- coding: utf-8 -*-
class RenameProductsAgain < ActiveRecord::Migration
  def self.up
    rename_table "product_names", "products"
  end

  def self.down
    rename_table "products", "product_names"
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
schema_comments-0.2.0 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.2.0.alpha5 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.2.0.alpha4 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.2.0.alpha3 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.2.0.alpha2 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.2.0.alpha1 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.1.4 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.1.3 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.1.2 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.1.1 spec/migrations/valid/003_rename_products_again.rb
schema_comments-0.1.0 spec/migrations/valid/003_rename_products_again.rb