mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -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
6 lines
200 B
JavaScript
6 lines
200 B
JavaScript
exports.seed = async function (knex) {
|
|
return await knex('directus_roles').insert([
|
|
{ id: '5b935e65-d3db-4457-96f1-597e2fcfc7f3', name: 'TestAdmin', admin_access: true, app_access: true },
|
|
]);
|
|
};
|