mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
7 lines
218 B
JavaScript
7 lines
218 B
JavaScript
export function up(db) {
|
|
db.transaction(() => {
|
|
// there was a bug in the past where createdAt was set when account was updated instead
|
|
db.prepare(/* sql */ `update "User" set "createdAt" = null`).run();
|
|
})();
|
|
}
|