mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-05 08:06:19 +00:00
2 lines
137 B
SQL
2 lines
137 B
SQL
ALTER TABLE `chatThread` ADD `createdAt` integer;
|
|
UPDATE `chatThread` SET `createdAt` = strftime('%s', 'now') WHERE `createdAt` IS NULL;
|