[ 'type' => Schema::DT_BOOL, 'nullable' => false, 'default' => 1, 'index' => true ], 'name' => [ 'type' => Schema::DT_VARCHAR128, 'nullable' => false, 'default' => '' ], 'label' => [ 'type' => Schema::DT_VARCHAR128, 'nullable' => false, 'default' => '' ] ]; /** * @var array */ protected static $tableData = [ [ 'id' => 1, 'name' => 'wh', 'label' => 'wormholes' ],[ 'id' => 2, 'name' => 'k-space', 'label' => 'stargates' ],[ 'id' => 3, 'name' => 'none', 'label' => 'none' ],[ 'id' => 4, 'name' => 'all', 'label' => 'all' ] ]; }