comparison Lib/IMPL/SQL/Schema/Table.pm @ 163:6ce1f052b90a

temp commit
author wizard
date Tue, 15 Mar 2011 02:32:42 +0300
parents 16ada169ca75
children 76515373dac0
comparison
equal deleted inserted replaced
162:39c8788eded5 163:6ce1f052b90a
4 use IMPL::SQL::Schema::Column; 4 use IMPL::SQL::Schema::Column;
5 use IMPL::SQL::Schema::Constraint; 5 use IMPL::SQL::Schema::Constraint;
6 use IMPL::SQL::Schema::Constraint::PrimaryKey; 6 use IMPL::SQL::Schema::Constraint::PrimaryKey;
7 use IMPL::SQL::Schema::Constraint::ForeignKey; 7 use IMPL::SQL::Schema::Constraint::ForeignKey;
8 8
9 use base qw(IMPL::Object IMPL::Object::Disposable); 9 use base qw(
10 IMPL::Object
11 IMPL::Object::Disposable
12 IMPL::Object::Clonable
13 );
10 use IMPL::Class::Property; 14 use IMPL::Class::Property;
11 use IMPL::Class::Property::Direct; 15 use IMPL::Class::Property::Direct;
12
13 srand time;
14 16
15 BEGIN { 17 BEGIN {
16 public _direct property Name => prop_get; 18 public _direct property Name => prop_get;
17 public _direct property Schema => prop_get; 19 public _direct property Schema => prop_get;
18 public _direct property Columns => prop_get; 20 public _direct property Columns => prop_get;