admin管理员组文章数量:1341417
I am doing a REST tutorial with Knex.js(0.19.0
) and PostgreSQL(11-alpine
, [email protected]
), and I notice that the updatedAt
column does not work when I make PUT
request and update the data.
Currently this is my users
table:
// users_migration.js
exports.up = function(knex) {
return knex.schema.createTable('users', function(table) {
table
.increments('id')
.primary()
.unsigned();
table.string('firstName');
table
.string('lastName')
.index()
.notNullable();
table
.string('email')
.unique()
.index()
.notNullable();
table.string('password').notNullable();
table.string('role').defaultTo('STAFF');
table.boolean('isActive').defaultTo(false);
table.timestamp('createdAt').defaultTo(knex.fn.now());
table.timestamp('updatedAt').defaultTo(knex.fn.now());
});
};
I have tried this:
table.timestamp('createdAt').defaultTo(knex.raw('CURRENT_TIMESTAMP'));
table
.timestamp('updatedAt')
.defaultTo(knex.raw('CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP'));
But it doesn't work either.
How do I make it work? Please help.
I am doing a REST tutorial with Knex.js(0.19.0
) and PostgreSQL(11-alpine
, [email protected]
), and I notice that the updatedAt
column does not work when I make PUT
request and update the data.
Currently this is my users
table:
// users_migration.js
exports.up = function(knex) {
return knex.schema.createTable('users', function(table) {
table
.increments('id')
.primary()
.unsigned();
table.string('firstName');
table
.string('lastName')
.index()
.notNullable();
table
.string('email')
.unique()
.index()
.notNullable();
table.string('password').notNullable();
table.string('role').defaultTo('STAFF');
table.boolean('isActive').defaultTo(false);
table.timestamp('createdAt').defaultTo(knex.fn.now());
table.timestamp('updatedAt').defaultTo(knex.fn.now());
});
};
I have tried this:
table.timestamp('createdAt').defaultTo(knex.raw('CURRENT_TIMESTAMP'));
table
.timestamp('updatedAt')
.defaultTo(knex.raw('CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP'));
But it doesn't work either.
How do I make it work? Please help.
Share Improve this question asked Jul 23, 2019 at 15:16 SwixSwix 2,12311 gold badges38 silver badges58 bronze badges3 Answers
Reset to default 6When defining your schema, you can make use of the timestamps()
method to automatically add a created_at
and updated_at
column.
knex.schema.createTable('users', (table) => {
table.timestamps(true, true);
});
timestamps — table.timestamps([useTimestamps], [defaultToNow])
Adds created_at and updated_at columns on the database, setting each to datetime types. When true is passed as the first argument a timestamp type is used instead. Both columns default to being not null and using the current timestamp when true is passed as the second argument. Note that on MySQL the .timestamps() only have seconds precision, to get better precision use the .datetime or .timestamp methods directly with precision.
Source: https://knexjs/guide/schema-builder.html#timestamps
According to the documentation,
table.timestamps(true, true);
Add created_at and also updated_at alone. The second argument as true, refers to the date of now.
Source: https://knexjs/#Schema-timestamps
postgresql
does not support syntax CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
.
Only way to make updatedAt
to be updated automatically when column is updated is to use triggers.
This might work (copy-paste from Update timestamp when row is updated in PostgreSQL):
exports.up = function(knex) {
return knex.schema.createTable('users', function(table) {
...
table.timestamp('updatedAt').defaultTo(knex.fn.now());
})
.raw(`
CREATE OR REPLACE FUNCTION update_updated_at_column()
RETURNS TRIGGER AS $$
BEGIN
NEW."updatedAt"=now();
RETURN NEW;
END;
$$ language 'plpgsql';
`)
.raw(`
CREATE TRIGGER update_user_updated_at BEFORE UPDATE
ON ?? FOR EACH ROW EXECUTE PROCEDURE
update_updated_at_column();
`, ['users']);
};
Please let me know if there is some syntax errors or anything like that.
本文标签: javascriptHow to set updatedAt timestamp in Knexjs properlyStack Overflow
版权声明:本文标题:javascript - How to set `updatedAt` timestamp in Knex.js properly? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743597531a2508100.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论