You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
307 B

  1. exports.up = knex => {
  2. return knex.schema
  3. .table('storage', table => {
  4. table.string('syncInterval')
  5. table.json('state')
  6. })
  7. }
  8. exports.down = knex => {
  9. return knex.schema
  10. .table('storage', table => {
  11. table.dropColumn('syncInterval')
  12. table.dropColumn('state')
  13. })
  14. }