configuracao.js 455 B

1234567891011121314151617
  1. exports.seed = function(knex) {
  2. // Deletes ALL existing entries
  3. return knex('configuracao').del()
  4. .then(function () {
  5. // Inserts seed entries
  6. return knex('configuracao').insert([
  7. {
  8. Id: 1,
  9. Url: 'https://api.star.tv.br',
  10. Ifbotmaster: 1,
  11. Urlmaster: 'https://starcorp.star.psi.br/web/',
  12. Fotoclientes: 'http://starcorp.star.psi.br/web/img/foto.png'
  13. }
  14. ]);
  15. });
  16. };