-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Labels
Description
Would be great if we improve the behavior of herbs update for cases when entities have relationship with other entities.
one-to-one
entity('ToDoList', {
id: field(Number),
items: field(Item),This should create a migration with:
return knex.schema
.createTable('ToDoList', function (table) {
table.string('id').primary()
table.string('itemId').references('id').inTable('Item')
})one-to-many
entity('ToDoList', {
id: field(Number),
items: field([Item]),This should create a migration with:
return knex.schema
.createTable('ToDoList', function (table) {
table.string('id').primary()
...
})
.alterTable('Item', function (table) {
table.string('itemId').references('id').inTable('ToDoList')
...
})Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Ready to code