diff --git a/database/src/prepare.ts b/database/src/prepare.ts index fda4b4e13..440289aea 100644 --- a/database/src/prepare.ts +++ b/database/src/prepare.ts @@ -25,12 +25,6 @@ export default async (): Promise => { DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;`) - // Create Database `gradido_community_test` for tests - await con.query(` - CREATE DATABASE IF NOT EXISTS ${CONFIG.DB_DATABASE}_test - DEFAULT CHARACTER SET utf8mb4 - DEFAULT COLLATE utf8mb4_unicode_ci;`) - // Check if old migration table is present, delete if needed const [rows] = await con.query(`SHOW TABLES FROM \`${CONFIG.DB_DATABASE}\` LIKE 'migrations';`) if ((rows).length > 0) {