linkylinky/migrations/20210814090340_visit_counte...

14 lines
389 B
JavaScript
Raw Permalink Normal View History

2021-08-14 07:06:18 +00:00
exports.up = function (knex) {
return knex.schema.createTable('visits', function (table) {
2021-08-14 07:23:55 +00:00
table.increments('id').primary();
table.timestamp('timestamp').defaultTo(knex.fn.now());
table.string('shortcode').index();
2021-08-14 07:32:17 +00:00
table.foreign('shortcode').references('shortcode').inTable('urls').onDelete('CASCADE');
2021-08-14 07:06:18 +00:00
});
};
exports.down = function (knex) {
};