forked from DebaucheryLibrarian/traxxx
Added tag page. Added default 'anal' tag to Vixen scraper for Tushy and Tushy Raw.
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user