Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 71efd7a96f 1.231.20 2023-08-05 01:39:02 +02:00
DebaucheryLibrarian 3508e47600 Added alt_titles to series table. 2023-08-05 01:38:58 +02:00
3 changed files with 11 additions and 3 deletions

View File

@ -6,6 +6,10 @@ exports.up = async (knex) => {
await knex.schema.alterTable('movies', (table) => {
table.specificType('alt_titles', 'text ARRAY');
});
await knex.schema.alterTable('series', (table) => {
table.specificType('alt_titles', 'text ARRAY');
});
};
exports.down = async (knex) => {
@ -16,4 +20,8 @@ exports.down = async (knex) => {
await knex.schema.alterTable('movies', (table) => {
table.dropColumn('alt_titles');
});
await knex.schema.alterTable('series', (table) => {
table.dropColumn('alt_titles');
});
};

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.231.19",
"version": "1.231.20",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.231.19",
"version": "1.231.20",
"license": "ISC",
"dependencies": {
"@casl/ability": "^5.2.2",

View File

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