Added self hash filtering to media module. Moved Girl Girl back to Jules Jordan.

This commit is contained in:
2020-04-02 01:10:50 +02:00
parent 9a712e7371
commit ad7874649f
8 changed files with 54 additions and 43 deletions

View File

@@ -296,6 +296,9 @@ exports.up = knex => Promise.resolve()
table.string('piercings');
table.string('tattoos');
table.datetime('updated_at')
.defaultTo(knex.fn.now());
table.datetime('created_at')
.defaultTo(knex.fn.now());
}))