aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/097_add_comment_locale.rb
blob: 8a47351a66ccb7e18e582d49f11e02949d935640 (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- encoding : utf-8 -*-
class AddCommentLocale < ActiveRecord::Migration
    def self.up
        add_column :comments, :locale, :text, :null => false, :default => ""
    end

    def self.down
        remove_column :comments, :locale
    end
end