Sha256: c55e26885d0391917fbbb6839e8979dc14fb973c5578d376e598ef506d5220f9
Contents?: true
Size: 413 Bytes
Versions: 7
Compression:
Stored size: 413 Bytes
Contents
class CreateMenuLocales < ActiveRecord::Migration[6.0] def change create_table :menu_locales do |t| t.references :menu, foreign_key: true t.integer :locale, null: false, default: 0 t.string :title, limit: 200 t.string :page_title, limit: 200 t.string :short_title, limit: 200 t.timestamps end add_index :menu_locales, [:menu_id, :locale], unique: true end end
Version data entries
7 entries across 7 versions & 1 rubygems