Sha256: 28102059d80024954b8e326d622b04de2d77785550e63e562691ed8df1b76d41

Contents?: true

Size: 378 Bytes

Versions: 8

Compression:

Stored size: 378 Bytes

Contents

# -*- coding: utf-8 -*-
class ChangeComments < ActiveRecord::Migration
  def self.up
    column_comments(:products, {:name => "商品名称"})
    column_comments("products", "product_type_cd" => 'カテゴリコード')
  end

  def self.down
    column_comments(:products, {:name => "名称"})
    column_comments("products", "product_type_cd" => '種別コード')
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
schema_comments-0.2.0 spec/migrations/valid/007_change_comments.rb
schema_comments-0.2.0.alpha5 spec/migrations/valid/007_change_comments.rb
schema_comments-0.2.0.alpha4 spec/migrations/valid/007_change_comments.rb
schema_comments-0.2.0.alpha3 spec/migrations/valid/007_change_comments.rb
schema_comments-0.2.0.alpha2 spec/migrations/valid/007_change_comments.rb
schema_comments-0.2.0.alpha1 spec/migrations/valid/007_change_comments.rb
schema_comments-0.1.4 spec/migrations/valid/007_change_comments.rb
schema_comments-0.1.3 spec/migrations/valid/007_change_comments.rb