DataTable.php 431 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Model\Table;
  3. use Cake\Database\Schema\TableSchema;
  4. use Tools\Model\Table\Table;
  5. class DataTable extends Table {
  6. /**
  7. * @param \Cake\Database\Schema\TableSchema $schema
  8. *
  9. * @return \Cake\Database\Schema\TableSchema
  10. */
  11. protected function _initializeSchema(TableSchema $schema) {
  12. $schema->setColumnType('data_json', 'json');
  13. $schema->setColumnType('data_array', 'array');
  14. return $schema;
  15. }
  16. }