| 1234567891011121314151617 |
- exports.seed = function(knex) {
- // Deletes ALL existing entries
- return knex('configuracao').del()
- .then(function () {
- // Inserts seed entries
- return knex('configuracao').insert([
- {
- Id: 1,
- Url: 'https://api.star.tv.br',
- Ifbotmaster: 1,
- Urlmaster: 'https://starcorp.star.psi.br/web/',
- Fotoclientes: 'http://starcorp.star.psi.br/web/img/foto.png'
- }
- ]);
- });
- };
|