mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-29 10:06:57 +00:00
This is a requested low priority feature in #418 - I created the changes to follow similarly to how the Instance Description is handled.
16 lines
436 B
JavaScript
16 lines
436 B
JavaScript
/*
|
|
* SPDX-FileCopyrightText: marie and other Sharkey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export class RobotsTxt1738098171990 {
|
|
name = 'RobotsTxt1738098171990'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "meta" ADD "robotsTxt" character varying(2048)`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "robotsTxt"`);
|
|
}
|
|
}
|