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ů.
|
-
- exports.up = function(knex) {
- return knex.schema
- .createTable('xuserrole', async function (table) {
- table.increments('id');
- table.integer('userid');
- table.integer('roleid');
- })
-
- };
-
- exports.down = function(knex) {
- return knex.schema
- .dropTable('xuserrole')
- };
|