linkylinky/migrations/20210812194727_init_db.js

20 lines
440 B
JavaScript
Raw Normal View History

2021-08-12 18:14:07 +00:00
exports.up = function(knex) {
return knex.schema.createTable('users', function (table) {
table.increments('id');
2021-08-14 08:26:44 +00:00
table.string('username');
2021-08-12 18:14:07 +00:00
table.string('email').unique();
table.string('password');
table.timestamps();
})
.createTable('urls', function(table){
2021-08-12 19:44:07 +00:00
table.string('shortcode').primary();
table.string('target').index();
2021-08-12 18:14:07 +00:00
table.timestamps();
});
};
exports.down = function(knex) {
};