| @@ -8,148 +8,148 @@ | ||
| 8 | 8 | |
| 9 | 9 | return array( | 
| 10 | 10 | 'table' => array( | 
| 11 | -		'users' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { | |
| 12 | - | |
| 13 | - $table = $schema->createTable( 'users' ); | |
| 14 | - | |
| 15 | - $table->addColumn( 'id', 'integer', array( 'autoincrement' => true ) ); | |
| 16 | - $table->addColumn( 'label', 'string', array( 'length' => 255 ) ); | |
| 17 | - $table->addColumn( 'name', 'string', array( 'length' => 255 ) ); | |
| 18 | - $table->addColumn( 'remember_token', 'string', array( 'length' => 100, 'notnull' => false ) ); | |
| 19 | - $table->addColumn( 'salutation', 'string', array( 'length' => 8 ) ); | |
| 20 | - $table->addColumn( 'company', 'string', array( 'length' => 100 ) ); | |
| 21 | - $table->addColumn( 'vatid', 'string', array( 'length' => 32 ) ); | |
| 22 | - $table->addColumn( 'title', 'string', array( 'length' => 64 ) ); | |
| 23 | - $table->addColumn( 'firstname', 'string', array( 'length' => 64 ) ); | |
| 24 | - $table->addColumn( 'lastname', 'string', array( 'length' => 64 ) ); | |
| 25 | - $table->addColumn( 'address1', 'string', array( 'length' => 255 ) ); | |
| 26 | - $table->addColumn( 'address2', 'string', array( 'length' => 255 ) ); | |
| 27 | - $table->addColumn( 'address3', 'string', array( 'length' => 255 ) ); | |
| 28 | - $table->addColumn( 'postal', 'string', array( 'length' => 16 ) ); | |
| 29 | - $table->addColumn( 'city', 'string', array( 'length' => 255 ) ); | |
| 30 | - $table->addColumn( 'state', 'string', array( 'length' => 255 ) ); | |
| 31 | - $table->addColumn( 'langid', 'string', array( 'length' => 5, 'notnull' => false ) ); | |
| 32 | - $table->addColumn( 'countryid', 'string', array( 'length' => 2, 'notnull' => false, 'fixed' => true ) ); | |
| 33 | - $table->addColumn( 'telephone', 'string', array( 'length' => 32 ) ); | |
| 34 | - $table->addColumn( 'telefax', 'string', array( 'length' => 32 ) ); | |
| 35 | - $table->addColumn( 'website', 'string', array( 'length' => 255 ) ); | |
| 36 | - $table->addColumn( 'email', 'string', array( 'length' => 255 ) ); | |
| 37 | - $table->addColumn( 'password', 'string', array( 'length' => 255 ) ); | |
| 38 | - $table->addColumn( 'birthday', 'date', array( 'notnull' => false ) ); | |
| 39 | - $table->addColumn( 'vdate', 'date', array( 'notnull' => false ) ); | |
| 40 | - $table->addColumn( 'status', 'smallint', array() ); | |
| 41 | - $table->addColumn( 'updated_at', 'datetime', array() ); | |
| 42 | - $table->addColumn( 'created_at', 'datetime', array() ); | |
| 43 | -			$table->addColumn( 'editor', 'string', array('length' => 255 ) ); | |
| 44 | - | |
| 45 | - $table->setPrimaryKey( array( 'id' ), 'pk_mscus_id' ); | |
| 46 | - $table->addUniqueIndex( array( 'email' ), 'users_email_unique' ); | |
| 47 | - $table->addIndex( array( 'langid' ), 'users_langid_index' ); | |
| 48 | - $table->addIndex( array( 'status', 'lastname', 'firstname' ), 'users_status_lastname_firstname_index' ); | |
| 49 | - $table->addIndex( array( 'status', 'address1', 'address2' ), 'users_status_address1_address2_index' ); | |
| 50 | - $table->addIndex( array( 'status', 'postal', 'city' ), 'users_status_postal_city_index' ); | |
| 51 | - $table->addIndex( array( 'lastname' ), 'users_lastname_index' ); | |
| 52 | - $table->addIndex( array( 'address1' ), 'users_address1_index' ); | |
| 53 | - $table->addIndex( array( 'city' ), 'users_city_index' ); | |
| 54 | - $table->addIndex( array( 'postal' ), 'users_postal_index' ); | |
| 11 | +		'users' => function(\Doctrine\DBAL\Schema\Schema $schema) { | |
| 12 | + | |
| 13 | +			$table = $schema->createTable('users'); | |
| 14 | + | |
| 15 | +			$table->addColumn('id', 'integer', array('autoincrement' => true)); | |
| 16 | +			$table->addColumn('label', 'string', array('length' => 255)); | |
| 17 | +			$table->addColumn('name', 'string', array('length' => 255)); | |
| 18 | +			$table->addColumn('remember_token', 'string', array('length' => 100, 'notnull' => false)); | |
| 19 | +			$table->addColumn('salutation', 'string', array('length' => 8)); | |
| 20 | +			$table->addColumn('company', 'string', array('length' => 100)); | |
| 21 | +			$table->addColumn('vatid', 'string', array('length' => 32)); | |
| 22 | +			$table->addColumn('title', 'string', array('length' => 64)); | |
| 23 | +			$table->addColumn('firstname', 'string', array('length' => 64)); | |
| 24 | +			$table->addColumn('lastname', 'string', array('length' => 64)); | |
| 25 | +			$table->addColumn('address1', 'string', array('length' => 255)); | |
| 26 | +			$table->addColumn('address2', 'string', array('length' => 255)); | |
| 27 | +			$table->addColumn('address3', 'string', array('length' => 255)); | |
| 28 | +			$table->addColumn('postal', 'string', array('length' => 16)); | |
| 29 | +			$table->addColumn('city', 'string', array('length' => 255)); | |
| 30 | +			$table->addColumn('state', 'string', array('length' => 255)); | |
| 31 | +			$table->addColumn('langid', 'string', array('length' => 5, 'notnull' => false)); | |
| 32 | +			$table->addColumn('countryid', 'string', array('length' => 2, 'notnull' => false, 'fixed' => true)); | |
| 33 | +			$table->addColumn('telephone', 'string', array('length' => 32)); | |
| 34 | +			$table->addColumn('telefax', 'string', array('length' => 32)); | |
| 35 | +			$table->addColumn('website', 'string', array('length' => 255)); | |
| 36 | +			$table->addColumn('email', 'string', array('length' => 255)); | |
| 37 | +			$table->addColumn('password', 'string', array('length' => 255)); | |
| 38 | +			$table->addColumn('birthday', 'date', array('notnull' => false)); | |
| 39 | +			$table->addColumn('vdate', 'date', array('notnull' => false)); | |
| 40 | +			$table->addColumn('status', 'smallint', array()); | |
| 41 | +			$table->addColumn('updated_at', 'datetime', array()); | |
| 42 | +			$table->addColumn('created_at', 'datetime', array()); | |
| 43 | +			$table->addColumn('editor', 'string', array('length' => 255)); | |
| 44 | + | |
| 45 | +			$table->setPrimaryKey(array('id'), 'pk_mscus_id'); | |
| 46 | +			$table->addUniqueIndex(array('email'), 'users_email_unique'); | |
| 47 | +			$table->addIndex(array('langid'), 'users_langid_index'); | |
| 48 | +			$table->addIndex(array('status', 'lastname', 'firstname'), 'users_status_lastname_firstname_index'); | |
| 49 | +			$table->addIndex(array('status', 'address1', 'address2'), 'users_status_address1_address2_index'); | |
| 50 | +			$table->addIndex(array('status', 'postal', 'city'), 'users_status_postal_city_index'); | |
| 51 | +			$table->addIndex(array('lastname'), 'users_lastname_index'); | |
| 52 | +			$table->addIndex(array('address1'), 'users_address1_index'); | |
| 53 | +			$table->addIndex(array('city'), 'users_city_index'); | |
| 54 | +			$table->addIndex(array('postal'), 'users_postal_index'); | |
| 55 | 55 | |
| 56 | 56 | return $schema; | 
| 57 | 57 | }, | 
| 58 | 58 | |
| 59 | -		'users_address' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { | |
| 60 | - | |
| 61 | - $table = $schema->createTable( 'users_address' ); | |
| 62 | - | |
| 63 | - $table->addColumn( 'id', 'integer', array( 'autoincrement' => true ) ); | |
| 64 | - $table->addColumn( 'siteid', 'integer', array() ); | |
| 65 | - $table->addColumn( 'parentid', 'integer', array() ); | |
| 66 | - $table->addColumn( 'company', 'string', array( 'length' => 100 ) ); | |
| 67 | - $table->addColumn( 'vatid', 'string', array( 'length' => 32 ) ); | |
| 68 | - $table->addColumn( 'salutation', 'string', array( 'length' => 8 ) ); | |
| 69 | - $table->addColumn( 'title', 'string', array( 'length' => 64 ) ); | |
| 70 | - $table->addColumn( 'firstname', 'string', array( 'length' => 64 ) ); | |
| 71 | - $table->addColumn( 'lastname', 'string', array( 'length' => 64 ) ); | |
| 72 | - $table->addColumn( 'address1', 'string', array( 'length' => 255 ) ); | |
| 73 | - $table->addColumn( 'address2', 'string', array( 'length' => 255 ) ); | |
| 74 | - $table->addColumn( 'address3', 'string', array( 'length' => 255 ) ); | |
| 75 | - $table->addColumn( 'postal', 'string', array( 'length' => 16 ) ); | |
| 76 | - $table->addColumn( 'city', 'string', array( 'length' => 255 ) ); | |
| 77 | - $table->addColumn( 'state', 'string', array( 'length' => 255 ) ); | |
| 78 | - $table->addColumn( 'langid', 'string', array( 'length' => 5, 'notnull' => false ) ); | |
| 79 | - $table->addColumn( 'countryid', 'string', array( 'length' => 2, 'notnull' => false, 'fixed' => true ) ); | |
| 80 | - $table->addColumn( 'telephone', 'string', array( 'length' => 32 ) ); | |
| 81 | - $table->addColumn( 'email', 'string', array( 'length' => 255 ) ); | |
| 82 | - $table->addColumn( 'telefax', 'string', array( 'length' => 255 ) ); | |
| 83 | - $table->addColumn( 'website', 'string', array( 'length' => 255 ) ); | |
| 84 | - $table->addColumn( 'flag', 'integer', array() ); | |
| 85 | - $table->addColumn( 'pos', 'smallint', array() ); | |
| 86 | - $table->addColumn( 'mtime', 'datetime', array() ); | |
| 87 | - $table->addColumn( 'ctime', 'datetime', array() ); | |
| 88 | -			$table->addColumn( 'editor', 'string', array('length' => 255 ) ); | |
| 89 | - | |
| 90 | - $table->setPrimaryKey( array( 'id' ), 'pk_lvuad_id' ); | |
| 91 | - $table->addIndex( array( 'lastname', 'firstname' ), 'idx_lvuad_ln_fn' ); | |
| 92 | - $table->addIndex( array( 'address1', 'address2' ), 'idx_lvuad_ad1_ad2' ); | |
| 93 | - $table->addIndex( array( 'postal', 'city' ), 'idx_lvuad_post_ci' ); | |
| 94 | - $table->addIndex( array( 'parentid' ), 'idx_lvuad_pid' ); | |
| 95 | - $table->addIndex( array( 'city' ), 'idx_lvuad_city' ); | |
| 96 | - $table->addIndex( array( 'email' ), 'idx_lvuad_email' ); | |
| 59 | +		'users_address' => function(\Doctrine\DBAL\Schema\Schema $schema) { | |
| 60 | + | |
| 61 | +			$table = $schema->createTable('users_address'); | |
| 62 | + | |
| 63 | +			$table->addColumn('id', 'integer', array('autoincrement' => true)); | |
| 64 | +			$table->addColumn('siteid', 'integer', array()); | |
| 65 | +			$table->addColumn('parentid', 'integer', array()); | |
| 66 | +			$table->addColumn('company', 'string', array('length' => 100)); | |
| 67 | +			$table->addColumn('vatid', 'string', array('length' => 32)); | |
| 68 | +			$table->addColumn('salutation', 'string', array('length' => 8)); | |
| 69 | +			$table->addColumn('title', 'string', array('length' => 64)); | |
| 70 | +			$table->addColumn('firstname', 'string', array('length' => 64)); | |
| 71 | +			$table->addColumn('lastname', 'string', array('length' => 64)); | |
| 72 | +			$table->addColumn('address1', 'string', array('length' => 255)); | |
| 73 | +			$table->addColumn('address2', 'string', array('length' => 255)); | |
| 74 | +			$table->addColumn('address3', 'string', array('length' => 255)); | |
| 75 | +			$table->addColumn('postal', 'string', array('length' => 16)); | |
| 76 | +			$table->addColumn('city', 'string', array('length' => 255)); | |
| 77 | +			$table->addColumn('state', 'string', array('length' => 255)); | |
| 78 | +			$table->addColumn('langid', 'string', array('length' => 5, 'notnull' => false)); | |
| 79 | +			$table->addColumn('countryid', 'string', array('length' => 2, 'notnull' => false, 'fixed' => true)); | |
| 80 | +			$table->addColumn('telephone', 'string', array('length' => 32)); | |
| 81 | +			$table->addColumn('email', 'string', array('length' => 255)); | |
| 82 | +			$table->addColumn('telefax', 'string', array('length' => 255)); | |
| 83 | +			$table->addColumn('website', 'string', array('length' => 255)); | |
| 84 | +			$table->addColumn('flag', 'integer', array()); | |
| 85 | +			$table->addColumn('pos', 'smallint', array()); | |
| 86 | +			$table->addColumn('mtime', 'datetime', array()); | |
| 87 | +			$table->addColumn('ctime', 'datetime', array()); | |
| 88 | +			$table->addColumn('editor', 'string', array('length' => 255)); | |
| 89 | + | |
| 90 | +			$table->setPrimaryKey(array('id'), 'pk_lvuad_id'); | |
| 91 | +			$table->addIndex(array('lastname', 'firstname'), 'idx_lvuad_ln_fn'); | |
| 92 | +			$table->addIndex(array('address1', 'address2'), 'idx_lvuad_ad1_ad2'); | |
| 93 | +			$table->addIndex(array('postal', 'city'), 'idx_lvuad_post_ci'); | |
| 94 | +			$table->addIndex(array('parentid'), 'idx_lvuad_pid'); | |
| 95 | +			$table->addIndex(array('city'), 'idx_lvuad_city'); | |
| 96 | +			$table->addIndex(array('email'), 'idx_lvuad_email'); | |
| 97 | 97 | |
| 98 | 98 | return $schema; | 
| 99 | 99 | }, | 
| 100 | 100 | |
| 101 | -		'users_list_type' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { | |
| 101 | +		'users_list_type' => function(\Doctrine\DBAL\Schema\Schema $schema) { | |
| 102 | 102 | |
| 103 | - $table = $schema->createTable( 'users_list_type' ); | |
| 103 | +			$table = $schema->createTable('users_list_type'); | |
| 104 | 104 | |
| 105 | - $table->addColumn( 'id', 'integer', array( 'autoincrement' => true ) ); | |
| 106 | - $table->addColumn( 'siteid', 'integer', array() ); | |
| 107 | - $table->addColumn( 'domain', 'string', array( 'length' => 32 ) ); | |
| 108 | - $table->addColumn( 'code', 'string', array( 'length' => 32 ) ); | |
| 109 | - $table->addColumn( 'label', 'string', array( 'length' => 255 ) ); | |
| 110 | - $table->addColumn( 'status', 'smallint', array() ); | |
| 111 | - $table->addColumn( 'mtime', 'datetime', array() ); | |
| 112 | - $table->addColumn( 'ctime', 'datetime', array() ); | |
| 113 | - $table->addColumn( 'editor', 'string', array( 'length' => 255 ) ); | |
| 105 | +			$table->addColumn('id', 'integer', array('autoincrement' => true)); | |
| 106 | +			$table->addColumn('siteid', 'integer', array()); | |
| 107 | +			$table->addColumn('domain', 'string', array('length' => 32)); | |
| 108 | +			$table->addColumn('code', 'string', array('length' => 32)); | |
| 109 | +			$table->addColumn('label', 'string', array('length' => 255)); | |
| 110 | +			$table->addColumn('status', 'smallint', array()); | |
| 111 | +			$table->addColumn('mtime', 'datetime', array()); | |
| 112 | +			$table->addColumn('ctime', 'datetime', array()); | |
| 113 | +			$table->addColumn('editor', 'string', array('length' => 255)); | |
| 114 | 114 | |
| 115 | - $table->setPrimaryKey( array( 'id' ), 'pk_lvulity_id' ); | |
| 116 | - $table->addUniqueIndex( array( 'siteid', 'domain', 'code' ), 'unq_lvulity_sid_dom_code' ); | |
| 117 | - $table->addIndex( array( 'siteid', 'status' ), 'idx_lvulity_sid_status' ); | |
| 118 | - $table->addIndex( array( 'siteid', 'label' ), 'idx_lvulity_sid_label' ); | |
| 119 | - $table->addIndex( array( 'siteid', 'code' ), 'idx_lvulity_sid_code' ); | |
| 115 | +			$table->setPrimaryKey(array('id'), 'pk_lvulity_id'); | |
| 116 | +			$table->addUniqueIndex(array('siteid', 'domain', 'code'), 'unq_lvulity_sid_dom_code'); | |
| 117 | +			$table->addIndex(array('siteid', 'status'), 'idx_lvulity_sid_status'); | |
| 118 | +			$table->addIndex(array('siteid', 'label'), 'idx_lvulity_sid_label'); | |
| 119 | +			$table->addIndex(array('siteid', 'code'), 'idx_lvulity_sid_code'); | |
| 120 | 120 | |
| 121 | 121 | return $schema; | 
| 122 | 122 | }, | 
| 123 | 123 | |
| 124 | -		'users_list' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { | |
| 125 | - | |
| 126 | - $table = $schema->createTable( 'users_list' ); | |
| 127 | - | |
| 128 | - $table->addColumn( 'id', 'integer', array( 'autoincrement' => true ) ); | |
| 129 | - $table->addColumn( 'parentid', 'integer', array() ); | |
| 130 | - $table->addColumn( 'siteid', 'integer', array() ); | |
| 131 | - $table->addColumn( 'typeid', 'integer', array() ); | |
| 132 | - $table->addColumn( 'domain', 'string', array( 'length' => 32 ) ); | |
| 133 | - $table->addColumn( 'refid', 'string', array( 'length' => 32 ) ); | |
| 134 | - $table->addColumn( 'start', 'datetime', array( 'notnull' => false ) ); | |
| 135 | - $table->addColumn( 'end', 'datetime', array( 'notnull' => false ) ); | |
| 136 | - $table->addColumn( 'config', 'text', array( 'length' => 0xffff ) ); | |
| 137 | - $table->addColumn( 'pos', 'integer', array() ); | |
| 138 | - $table->addColumn( 'status', 'smallint', array() ); | |
| 139 | - $table->addColumn( 'mtime', 'datetime', array() ); | |
| 140 | - $table->addColumn( 'ctime', 'datetime', array() ); | |
| 141 | - $table->addColumn( 'editor', 'string', array( 'length' => 255 ) ); | |
| 142 | - | |
| 143 | - $table->setPrimaryKey( array( 'id' ), 'pk_lvuli_id' ); | |
| 144 | - $table->addUniqueIndex( array( 'siteid', 'domain', 'refid', 'typeid', 'parentid' ), 'unq_lvuli_sid_dm_rid_tid_pid' ); | |
| 145 | - $table->addIndex( array( 'siteid', 'status', 'start', 'end' ), 'idx_lvuli_sid_stat_start_end' ); | |
| 146 | - $table->addIndex( array( 'parentid', 'siteid', 'refid', 'domain', 'typeid' ), 'idx_lvuli_pid_sid_rid_dom_tid' ); | |
| 147 | - $table->addIndex( array( 'parentid', 'siteid', 'start' ), 'idx_lvuli_pid_sid_start' ); | |
| 148 | - $table->addIndex( array( 'parentid', 'siteid', 'end' ), 'idx_lvuli_pid_sid_end' ); | |
| 149 | - $table->addIndex( array( 'parentid', 'siteid', 'pos' ), 'idx_lvuli_pid_sid_pos' ); | |
| 150 | - | |
| 151 | - $table->addForeignKeyConstraint( 'users_list_type', array( 'typeid' ), array( 'id' ), | |
| 152 | - array( 'onUpdate' => 'CASCADE', 'onDelete' => 'CASCADE' ), 'fk_lvuli_typeid' ); | |
| 124 | +		'users_list' => function(\Doctrine\DBAL\Schema\Schema $schema) { | |
| 125 | + | |
| 126 | +			$table = $schema->createTable('users_list'); | |
| 127 | + | |
| 128 | +			$table->addColumn('id', 'integer', array('autoincrement' => true)); | |
| 129 | +			$table->addColumn('parentid', 'integer', array()); | |
| 130 | +			$table->addColumn('siteid', 'integer', array()); | |
| 131 | +			$table->addColumn('typeid', 'integer', array()); | |
| 132 | +			$table->addColumn('domain', 'string', array('length' => 32)); | |
| 133 | +			$table->addColumn('refid', 'string', array('length' => 32)); | |
| 134 | +			$table->addColumn('start', 'datetime', array('notnull' => false)); | |
| 135 | +			$table->addColumn('end', 'datetime', array('notnull' => false)); | |
| 136 | +			$table->addColumn('config', 'text', array('length' => 0xffff)); | |
| 137 | +			$table->addColumn('pos', 'integer', array()); | |
| 138 | +			$table->addColumn('status', 'smallint', array()); | |
| 139 | +			$table->addColumn('mtime', 'datetime', array()); | |
| 140 | +			$table->addColumn('ctime', 'datetime', array()); | |
| 141 | +			$table->addColumn('editor', 'string', array('length' => 255)); | |
| 142 | + | |
| 143 | +			$table->setPrimaryKey(array('id'), 'pk_lvuli_id'); | |
| 144 | +			$table->addUniqueIndex(array('siteid', 'domain', 'refid', 'typeid', 'parentid'), 'unq_lvuli_sid_dm_rid_tid_pid'); | |
| 145 | +			$table->addIndex(array('siteid', 'status', 'start', 'end'), 'idx_lvuli_sid_stat_start_end'); | |
| 146 | +			$table->addIndex(array('parentid', 'siteid', 'refid', 'domain', 'typeid'), 'idx_lvuli_pid_sid_rid_dom_tid'); | |
| 147 | +			$table->addIndex(array('parentid', 'siteid', 'start'), 'idx_lvuli_pid_sid_start'); | |
| 148 | +			$table->addIndex(array('parentid', 'siteid', 'end'), 'idx_lvuli_pid_sid_end'); | |
| 149 | +			$table->addIndex(array('parentid', 'siteid', 'pos'), 'idx_lvuli_pid_sid_pos'); | |
| 150 | + | |
| 151 | +			$table->addForeignKeyConstraint('users_list_type', array('typeid'), array('id'), | |
| 152 | +				array('onUpdate' => 'CASCADE', 'onDelete' => 'CASCADE'), 'fk_lvuli_typeid'); | |
| 153 | 153 | |
| 154 | 154 | return $schema; | 
| 155 | 155 | }, | 
| @@ -21,7 +21,7 @@ discard block | ||
| 21 | 21 | */ | 
| 22 | 22 | public function getPostDependencies() | 
| 23 | 23 |  	{ | 
| 24 | - return array( 'MShopAddTypeData' ); | |
| 24 | +		return array('MShopAddTypeData'); | |
| 25 | 25 | } | 
| 26 | 26 | |
| 27 | 27 | |
| @@ -30,15 +30,15 @@ discard block | ||
| 30 | 30 | */ | 
| 31 | 31 | public function migrate() | 
| 32 | 32 |  	{ | 
| 33 | - $this->msg( 'Creating Aimeos Laravel user tables', 0 ); | |
| 34 | - $this->status( '' ); | |
| 33 | +		$this->msg('Creating Aimeos Laravel user tables', 0); | |
| 34 | +		$this->status(''); | |
| 35 | 35 | |
| 36 | 36 | $ds = DIRECTORY_SEPARATOR; | 
| 37 | 37 | |
| 38 | 38 | $files = array( | 
| 39 | - 'db-customer' => __DIR__ . $ds . 'default' . $ds . 'schema' . $ds . 'customer.php', | |
| 39 | + 'db-customer' => __DIR__.$ds.'default'.$ds.'schema'.$ds.'customer.php', | |
| 40 | 40 | ); | 
| 41 | 41 | |
| 42 | - $this->setupSchema( $files ); | |
| 42 | + $this->setupSchema($files); | |
| 43 | 43 | } | 
| 44 | 44 | } |