All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 54s
- Changed file permissions from 644 to 755 for various files in the mobile-app and mobile-app_legacy_rn_expo directories, ensuring executable permissions where necessary. - Added a new SQL migration script to the backend to introduce missing columns for club billing and invoice settings in the clubs table, maintaining synchronization with the current Sequelize model.
19 lines
398 B
JavaScript
Executable File
19 lines
398 B
JavaScript
Executable File
import { Sequelize } from 'sequelize';
|
|
import { development } from './config.js';
|
|
|
|
|
|
const sequelize = new Sequelize(
|
|
development.database,
|
|
development.username,
|
|
development.password,
|
|
{
|
|
host: development.host,
|
|
dialect: development.dialect,
|
|
define: development.define,
|
|
logging: development.logging ?? false,
|
|
storage: development.storage,
|
|
}
|
|
);
|
|
|
|
export default sequelize;
|