15 lines
295 B
JavaScript
Executable File
15 lines
295 B
JavaScript
Executable File
db.createUser({
|
|
user: 'the_username',
|
|
pwd: 'the_password',
|
|
roles: [
|
|
{
|
|
role: 'dbOwner',
|
|
db: 'the_database',
|
|
},
|
|
],
|
|
});
|
|
|
|
db.createCollection('todos');
|
|
|
|
db.todos.insert({ text: 'Write code', done: true });
|
|
db.todos.insert({ text: 'Learn about containers', done: false }); |