Now logging visits to shorturls

This commit is contained in:
2021-08-14 09:23:55 +02:00
parent 5e9dec640a
commit c4c22a7405
2 changed files with 3 additions and 2 deletions

View File

@@ -1,9 +1,9 @@
exports.up = function (knex) {
return knex.schema.createTable('visits', function (table) {
table.increments('id').primary();
table.timestamp('timestamp').defaultTo(knex.fn.now());
table.string('shortcode');
table.primary(['shortcode', 'timestamp']);
table.foreign('shortcode').references('shortcode').inTable('urls');
});
};