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ů.
 
 
 

16 řádky
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. };