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

20210527173933_create_profiles_table.js 310B

123456789101112
  1. exports.up = function(knex) {
  2. return knex.schema
  3. .createTable('profiles', function(table) {
  4. table.increments('profile_id').primary()
  5. table.integer('user_id').notNullable()
  6. })
  7. }
  8. exports.down = function(knex) {
  9. return knex.schema
  10. .dropTable('profiles')
  11. }