package Common::DB::Schema::InformationSchema::Columns;

use strict;
use warnings;

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

__PACKAGE__->table('information_schema.columns');
__PACKAGE__->add_columns(
	qw/
	  table_catalog
	  table_schema
	  table_name
	  column_name
	  ordinal_position
	  column_default
	  is_nullable
	  data_type
	  character_maximum_length
	  character_octet_length
	  numeric_precision
	  numeric_scale
	  character_set_name
	  collation_name
	  column_type
	  column_key
	  extra
	  privileges
	  column_comment
	  /
);

1;
