package Common::DB::Schema::InformationSchema::Indexes;

use strict;
use warnings;

use lib '/app/tools/common/lib';
use base 'Common::DB::DBIxCore';

__PACKAGE__->table('information_schema.statistics');
__PACKAGE__->add_columns(
	qw/
	  table_catalog
	  table_schema
	  table_name
	  non_unique
	  index_schema
	  index_name
	  seq_in_index
	  column_name
	  collation
	  cardinality
	  sub_part
	  packed
	  nullable
	  index_type
	  comment
	  index_comment
	  /
);

1;

