Giter Club home page Giter Club logo

Comments (4)

shioyama avatar shioyama commented on May 25, 2024

Hmm ok, well I'm not using vitesse so I can't reproduce this, but you can anyway just adjust the generated migrations to make the index name shorter.

from mobility.

janekwunderlich avatar janekwunderlich commented on May 25, 2024

The problem isn't the length of the index name, it's the key length of the index.

[:translatable_type, :key, :value, :locale] exceeds 3072 bytes apparently.

from mobility.

h4b00 avatar h4b00 commented on May 25, 2024

This is how I made it work

    create_table :mobility_string_translations do |t|
      t.string :locale, null: false, limit: 10
      t.string :key, null: false, limit: 35
      t.string :value
      t.references :translatable, polymorphic: true, index: false
      t.timestamps null: false
      t.index [:translatable_id, :translatable_type, :locale, :key], unique: true, name: :i_translations_on_id_l_t_k
      t.index [:translatable_id, :translatable_type, :key], name: :i_translations_on_id_type_key
      t.index [:translatable_type, :key, :value, :locale], name: :i_translations_on_k_v_l
    end

from mobility.

shioyama avatar shioyama commented on May 25, 2024

Yeah exactly, just give them a name like @h4b00 showed above.

from mobility.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.