You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class ClimbsSchema extends Schema {
up() {
this.table("climbs", (table) => {
table.specificType("name_vector", "tsvector"); // ok
table.index(["name_vector"], "name_vector", "GIN"); // ok
table.update({ name_vector: 'to_tsvector(name)' }); // TypeError: table.update is not a function
});
}
...
** edit
I ended up replacing table.update with this and it worked. I still wanted to know if there's a simpler way.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
How do I run
update <table> set ...
?** edit
I ended up replacing table.update with this and it worked. I still wanted to know if there's a simpler way.
Beta Was this translation helpful? Give feedback.
All reactions