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ů.
| 123456789101112 |
- exports.up = function(knex) {
- return knex.schema
- .createTable('profiles', function(table) {
- table.increments('profile_id').primary()
- table.integer('user_id').notNullable()
- })
- }
-
- exports.down = function(knex) {
- return knex.schema
- .dropTable('profiles')
- }
|