summaryrefslogtreecommitdiff
path: root/migrations/20171225172732_setup.js
blob: 3e25d90b5bb713325de56f046e7c765951514de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
exports.up = function(knex, Promise) {

  return knex.schema.createTable('plops', function (table) {
    table.increments();
    table.string('url');
    table.string('ip');
    table.timestamps();
  })

};

exports.down = function(knex, Promise) {
  return knex.schema.dropTable('plops')
};