mirror of
https://codeberg.org/timelimit/timelimit-server.git
synced 2025-10-05 02:39:48 +02:00
51 lines
2.7 KiB
TypeScript
51 lines
2.7 KiB
TypeScript
/*
|
|
* server component for the TimeLimit App
|
|
* Copyright (C) 2019 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 } from 'sequelize'
|
|
import { attributes as addDeviceTokenAttributes } from '../../adddevicetoken'
|
|
import { attributes as appAttributes } from '../../app'
|
|
import { attributes as authTokenAttributes } from '../../authtoken'
|
|
import { attributesVersion1 as categoryAttributes } from '../../category'
|
|
import { attributes as categoryAppAttributes } from '../../categoryapp'
|
|
import { attributesVersion1 as deviceAttributes } from '../../device'
|
|
import { attributes as familyAttributes } from '../../family'
|
|
import { attributes as purchaseAttributes } from '../../purchase'
|
|
import { attributes as timelimitruleAttributes } from '../../timelimitrule'
|
|
import { attributesVersion1 as usedTimeAttribute } from '../../usedtime'
|
|
import { attributesVersion1 as userAttributes } from '../../user'
|
|
|
|
export async function up (queryInterface: QueryInterface, sequelize: Sequelize) {
|
|
await sequelize.transaction({
|
|
type: 'EXCLUSIVE'
|
|
}, async (transaction) => {
|
|
await queryInterface.createTable('AddDeviceTokens', addDeviceTokenAttributes, { transaction })
|
|
await queryInterface.createTable('Apps', appAttributes, { transaction })
|
|
await queryInterface.createTable('AuthTokens', authTokenAttributes, { transaction })
|
|
await queryInterface.createTable('Categories', categoryAttributes, { transaction })
|
|
await queryInterface.createTable('CategoryApps', categoryAppAttributes, { transaction })
|
|
await queryInterface.createTable('Devices', deviceAttributes, { transaction })
|
|
await queryInterface.createTable('Families', familyAttributes, { transaction })
|
|
await queryInterface.createTable('Purchases', purchaseAttributes, { transaction })
|
|
await queryInterface.createTable('TimelimitRules', timelimitruleAttributes, { transaction })
|
|
await queryInterface.createTable('UsedTimes', usedTimeAttribute, { transaction })
|
|
await queryInterface.createTable('Users', userAttributes, { transaction })
|
|
})
|
|
}
|
|
|
|
export async function down () {
|
|
throw new Error('not possible')
|
|
}
|