Вы не можете выбрать более 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. }