mirror of
https://codeberg.org/timelimit/timelimit-server.git
synced 2026-08-31 19:03:45 +02:00
68 lines
2.8 KiB
TypeScript
68 lines
2.8 KiB
TypeScript
/*
|
|
* server component for the TimeLimit App
|
|
* Copyright (C) 2019 - 2026 Jonas Lochmann
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, version 3 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { QueryInterface, Sequelize, Transaction } from 'sequelize'
|
|
|
|
export async function up (queryInterface: QueryInterface, sequelize: Sequelize) {
|
|
await sequelize.transaction({
|
|
type: Transaction.TYPES.EXCLUSIVE
|
|
}, async (transaction) => {
|
|
const dialect = sequelize.getDialect()
|
|
const isMysql = dialect === 'mysql' || dialect === 'mariadb'
|
|
|
|
if (isMysql) {
|
|
await sequelize.query(
|
|
'CREATE TABLE `Pings` ' +
|
|
'(`familyId` VARCHAR(10) NOT NULL,' +
|
|
'`receiverDeviceId` VARCHAR(6) NOT NULL,' +
|
|
'`senderDeviceId` VARCHAR(6) NOT NULL,' +
|
|
'`type` INTEGER NOT NULL,' +
|
|
'`token` VARCHAR(6) NOT NULL,' +
|
|
'PRIMARY KEY (`familyId`, `receiverDeviceId`, `senderDeviceId`, `type`),' +
|
|
'FOREIGN KEY (`familyId`, `receiverDeviceId`) REFERENCES `Devices` (`familyId`, `deviceId`) ON UPDATE CASCADE ON DELETE CASCADE,' +
|
|
'FOREIGN KEY (`familyId`, `senderDeviceId`) REFERENCES `Devices` (`familyId`, `deviceId`) ON UPDATE CASCADE ON DELETE CASCADE' +
|
|
')',
|
|
{ transaction }
|
|
)
|
|
} else {
|
|
await sequelize.query(
|
|
'CREATE TABLE "Pings" ' +
|
|
'("familyId" VARCHAR(10) NOT NULL,' +
|
|
'"receiverDeviceId" VARCHAR(6) NOT NULL,' +
|
|
'"senderDeviceId" VARCHAR(6) NOT NULL,' +
|
|
'"type" INTEGER NOT NULL,' +
|
|
'"token" VARCHAR(6) NOT NULL,' +
|
|
'PRIMARY KEY ("familyId", "receiverDeviceId", "senderDeviceId", "type"),' +
|
|
'FOREIGN KEY ("familyId", "receiverDeviceId") REFERENCES "Devices" ("familyId", "deviceId") ON UPDATE CASCADE ON DELETE CASCADE,' +
|
|
'FOREIGN KEY ("familyId", "senderDeviceId") REFERENCES "Devices" ("familyId", "deviceId") ON UPDATE CASCADE ON DELETE CASCADE' +
|
|
')',
|
|
{ transaction }
|
|
)
|
|
}
|
|
|
|
await queryInterface.addIndex('Pings', ['familyId', 'senderDeviceId'], { transaction })
|
|
})
|
|
}
|
|
|
|
export async function down (queryInterface: QueryInterface, sequelize: Sequelize) {
|
|
await sequelize.transaction({
|
|
type: Transaction.TYPES.EXCLUSIVE
|
|
}, async (transaction) => {
|
|
await queryInterface.dropTable('Pings', { transaction })
|
|
})
|
|
}
|