Sha256: 00ff7bc5b71f9bb994f4734855edf815c4d1cfbe68304eae950e73d94048b1bf
Contents?: true
Size: 433 Bytes
Versions: 14
Compression:
Stored size: 433 Bytes
Contents
class CreateTranslationValues < PeakFlowUtils::ApplicationMigration def change create_table :peak_flow_utils_translation_values do |t| t.references :translation_key, null: false t.string :file_path t.string :locale, index: true t.string :value t.timestamps end add_foreign_key :peak_flow_utils_translation_values, :peak_flow_utils_translation_keys, column: "translation_key_id" end end
Version data entries
14 entries across 14 versions & 1 rubygems