Sha256: 9acdcd620f993ad67c5bf1c4097e763e8a27837ef83753a685c1a46e0cd439a7
Contents?: true
Size: 357 Bytes
Versions: 16
Compression:
Stored size: 357 Bytes
Contents
class CreateGlobalizeTranslations < ActiveRecord::Migration def self.up create_table :globalize_translations do |t| t.string :locale t.string :key t.text :value t.text :interpolations t.boolean :is_proc, :default => false t.timestamps end end def self.down drop_table :globalize_translations end end
Version data entries
16 entries across 16 versions & 1 rubygems