knex('course_module')
.insert({ name: jsonData.name, description: jsonData.description, content: JSON.stringify(jsonData), number: jsonData.number, account_id: 'account_id', user_id: 'user_id', course_id: 'course_id', created_at: new Date(), updated_at: new Date() })
knex('course_module')