Sha256: 94ca6f28c4b2a4d1cec847f684e016912ff7a0c54794900a48ab5361e6ccca15
Contents?: true
Size: 363 Bytes
Versions: 95
Compression:
Stored size: 363 Bytes
Contents
class CreateTranslations < ActiveRecord::Migration[5.0] def self.up create_table :translations do |t| t.string :locale t.string :key t.text :value t.text :interpolations t.boolean :is_proc, default: false t.references :exhibit t.timestamps end end def self.down drop_table :translations end end
Version data entries
95 entries across 95 versions & 1 rubygems