| UR documentation | Contained in the UR distribution. |
UR::DataSource::RDBMS::TableColumn::Viewer::Default::Text - Viewer class for RDBMS column objects
This class defines a text-mode viewer for RDBMS column objects, and is used by the 'ur info' command.
| UR documentation | Contained in the UR distribution. |
package UR::DataSource::RDBMS::TableColumn::Viewer::Default::Text; use strict; use warnings; UR::Object::Type->define( class_name => __PACKAGE__, is => 'UR::Object::Viewer::Default::Text', has => [ default_aspects => { is => 'ARRAY', is_constant => 1, value => ['column_name', 'table_name', 'data_type', 'length', 'nullable'] }, ], ); 1;