Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
b858786101 1.253.1 2026-06-08 23:29:39 +02:00
DebaucheryLibrarian
c9a24069da Renamed queue table to sync. 2026-06-08 23:29:36 +02:00
3 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
exports.up = async function(knex) {
await knex.schema.createTable('queue', (table) => {
await knex.schema.createTable('sync', (table) => {
table.increments('id');
table.string('domain');
@@ -36,7 +36,7 @@ exports.up = async function(knex) {
};
exports.down = async function(knex) {
await knex.schema.dropTable('queue');
await knex.schema.dropTable('sync');
await knex('users_roles')
.update('abilities', JSON.stringify([

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.253.0",
"version": "1.253.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.253.0",
"version": "1.253.1",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

@@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.253.0",
"version": "1.253.1",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {