I have a data type “parent table” which includes the “equipment list”, and there shall be another table “child table” which includes the details items for each equipment.
i want to automatically create new data type for each new equipment added in the “parent table” / Equipment list.
Since we may have thousands of equipment and each equipment will have hundreds of items.
so, such if “Equpmint_A” added to equipment list, a new table may called “items_Equipment_A” will be created automatically based on predefined fields.
Observando sua necessidade, aparentemente, precisa-se ter o item (ou a peça) que vai originar o equipamento, pelo que estou observando de uma primeira visão.
Por exemplo: vou cadastrar o equipamento A, para que o equipamento A funcione, precisa-se ter o item que se encaixe no equipamento A. Para isso acontecer, vou selecionar, vou cadastrar o equipamento A, para isso precisa-se ter um código para identificar o equipamento, e também para a peça(item), sendo assim quando você cadastrar o equipamento A, aparecerá os itens com sua codificação a qual se qualifica para o equipamento em questão, ao invés de criar uma tabela para cada item a ser criado, nem sei se no bubble isso é possível, criar banco de dados em tempo real.Talvez no final, entre a tabela pai e filho surgirá uma terceira tabela, onde em definitvo você terá o equipamento com o item ou os itens para que o equipamento esteja completo.
Isso é uma visão prévia sobre o descrito aqui. Obrigado.
In Bubble, you don’t need to dynamically create new data types (tables) for each piece of equipment. Instead, you can simplify the structure by using fields to store relationships between your “Parent” and “Child” data types.
Here’s how you can do it:
Parent Table (Equipment List): This table will include a list of equipment.
• Example fields: Equipment Name, Category, Other Attributes.
Child Table (Equipment Details): This table will store the individual items related to each piece of equipment.
• Example fields: Item Name, Item Details, Related Equipment (this field will link back to the parent “Equipment” entry).
Instead of creating a new data type for every piece of equipment, you can link each piece of equipment to its details through a field called Related Equipment in the “Child Table”. When you add a new piece of equipment, you can create multiple related items automatically using workflows.
This setup scales well, even if you have thousands of pieces of equipment, and it keeps your database manageable. Bubble can easily handle this type of relational data structure without the need to create separate tables for each piece of equipment.