app.js 0v^��U angular.module('myApp', ['ionic', 'myApp.services', 'myApp.controllers']) .run(function(DB) { DB.init(); }); config.js �rH��U ����U angular.module('myApp.config', []) .constant('DB_CONFIG', { name: 'DB', tables: [ { name: 'documents', columns: [ {name: 'id', type: 'integer primary key'}, {name: 'title', type: 'text'}, {name: 'keywords', type: 'text'}, {name: 'version', type: 'integer