Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

20240202201127_added xuserrole.js 295 B

123456789101112131415
  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. };