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

20210929163630_zipcodes.js 485B

1234567891011121314
  1. exports.up = function (knex) {
  2. return knex.schema.createTable('zip_codes', function (table) {
  3. table.integer('zip_code_id').primary()
  4. table.string('latitude', 16).notNullable()
  5. table.string('longitude', 16).notNullable()
  6. table.string('city', 128).notNullable()
  7. table.string('state', 16).notNullable()
  8. table.string('county', 128).notNullable()
  9. })
  10. }
  11. exports.down = function (knex) {
  12. return knex.schema.dropTable('zip_codes')
  13. }