Sha256: e063f3bcf6666fd6797038b04ab537ef3dc4402b0bdea847d88faddbf58798c3
Contents?: true
Size: 497 Bytes
Versions: 13
Compression:
Stored size: 497 Bytes
Contents
# frozen_string_literal: true class CreateDecidimTermCustomizerTranslations < ActiveRecord::Migration[5.2] def change create_table :decidim_term_customizer_translations do |t| t.string :locale t.string :key t.text :value t.references( :translation_set, null: false, foreign_key: { to_table: :decidim_term_customizer_translation_sets }, index: { name: "decidim_term_customizer_translation_translation_set" } ) end end end
Version data entries
13 entries across 13 versions & 1 rubygems