Added tag page. Added default 'anal' tag to Vixen scraper for Tushy and Tushy Raw.

This commit is contained in:
2019-11-11 05:18:28 +01:00
parent 4c1087ca53
commit 681f1bca85
37 changed files with 348 additions and 84 deletions

View File

@@ -37,7 +37,9 @@ exports.up = knex => Promise.resolve()
.then(() => knex.schema.createTable('tags_groups', (table) => {
table.increments('id', 12);
table.string('group', 32);
table.string('name', 32);
table.text('description');
table.string('slug', 32)
.unique();
}))
@@ -45,6 +47,8 @@ exports.up = knex => Promise.resolve()
table.increments('id', 12);
table.string('name');
table.text('description');
table.integer('group_id', 12)
.references('id')
.inTable('tags_groups');