| 12345678910111213141516171819 |
- exports.seed = function(knex) {
- // Deletes ALL existing entries
- return knex('usuario').del()
- .then(function () {
- // Inserts seed entries
- return knex('usuario').insert([
- {
- "Id": 2,
- "Nome": "SysDev",
- "Login": "sysdev",
- "Senha": "$2b$08$OckwNAnmdnIyjiDtCRpXN./1h2pphmTFdKpQz.U3ZLHt63Rq7NmHC",
- "Ativo": 1,
- "Nivel": 1,
- "Setor": 1
- }
- ]);
- });
- };
|