-- AlterTable
ALTER TABLE `site_settings`
    ADD COLUMN `sitemapIncludeStatic` BOOLEAN NOT NULL DEFAULT true,
    ADD COLUMN `sitemapIncludeProfiles` BOOLEAN NOT NULL DEFAULT true,
    ADD COLUMN `sitemapIncludeRooms` BOOLEAN NOT NULL DEFAULT true,
    ADD COLUMN `sitemapIncludeRoomCategories` BOOLEAN NOT NULL DEFAULT true,
    ADD COLUMN `sitemapIncludeQuotes` BOOLEAN NOT NULL DEFAULT true,
    ADD COLUMN `sitemapIncludeQuoteCategories` BOOLEAN NOT NULL DEFAULT true,
    ADD COLUMN `sitemapIncludeConfessions` BOOLEAN NOT NULL DEFAULT true,
    ADD COLUMN `robotsDisallowPaths` TEXT NULL;
