Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

20210527174434_create_groupings_table.js 408B

12345678910111213
  1. exports.up = function(knex) {
  2. return knex.schema
  3. .createTable('groupings', function(table) {
  4. table.increments('grouping_id').primary()
  5. table.string('grouping_name', 128).notNullable()
  6. table.string('grouping_type', 128).notNullable() // Don't over normalize
  7. })
  8. }
  9. exports.down = function(knex) {
  10. return knex.schema
  11. .dropTable('groupings')
  12. }