您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20210527173933_create_profiles_table.js 318B

1234567891011
  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. table.string('user_media')
  6. })
  7. }
  8. exports.down = function (knex) {
  9. return knex.schema.dropTable('profiles')
  10. }