mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
* Migrations * Bluesky for team page * Unify interfaces * For user page * To org social links
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
export function up(db) {
|
|
db.transaction(() => {
|
|
db.prepare(/* sql */ `alter table "User" add "bsky" text`).run();
|
|
|
|
db.prepare(/* sql */ `alter table "AllTeam" add "bsky" text`).run();
|
|
})();
|
|
}
|