linkylinky/migrations/20210812194727_init_db.js

20 lines
428 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');
table.string('name');
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();
2021-08-12 18:14:07 +00:00
table.string('target');
table.timestamps();
});
};
exports.down = function(knex) {
};