8 lines
247 B
SQL
8 lines
247 B
SQL
-- Your SQL goes here
|
|
|
|
ALTER TABLE "tasks" ADD COLUMN "created_at" TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
|
|
ALTER TABLE "tasks" ADD COLUMN "updated_at" TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
|
|
|
|
SELECT diesel_manage_updated_at('tasks');
|
|
|