You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20210527173933_create_profiles_table.js 283B

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