Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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