robin*

디폴트 판 생성

......@@ -6,4 +6,5 @@ module.exports = db;
db.then(async() => {
await db.get('board').createIndex({name: 1}, {unique: true});
await db.get('thread').createIndex({board: 1, lastUpdated: -1});
await db.get('board').insert({name: 'amumal', title: '아무말판'});
});
......