You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 line
295 B

  1. exports.up = function(knex) {
  2. return knex.schema
  3. .createTable('xuserrole', async function (table) {
  4. table.increments('id');
  5. table.integer('userid');
  6. table.integer('roleid');
  7. })
  8. };
  9. exports.down = function(knex) {
  10. return knex.schema
  11. .dropTable('xuserrole')
  12. };