linkylinky/migrations/20210814090340_visit_counte...

14 lines
361 B
JavaScript

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.foreign('shortcode').references('shortcode').inTable('urls');
});
};
exports.down = function (knex) {
};