mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
* reorganized for sanity * filter tests for _eq/_neq * logical operators * update one one to many * /:collection PATCH one to many * base tables.id => uuids to minimize collisions * tests pass * added python to dockerfile * tests passing * ci? * ci... * hanging async
13 lines
305 B
JavaScript
13 lines
305 B
JavaScript
exports.seed = async function (knex) {
|
|
return await knex('directus_users').insert([
|
|
{
|
|
id: 'a8057636-9b70-4804-bfec-19c88d1a3273',
|
|
email: 'test@admin.com',
|
|
password: 'TestAdminPassword',
|
|
status: 'active',
|
|
role: '5b935e65-d3db-4457-96f1-597e2fcfc7f3',
|
|
token: 'AdminToken',
|
|
},
|
|
]);
|
|
};
|