comparison Lib/IMPL/SQL/Schema.pm @ 33:0004faa276dc

small fixes, some new tests
author Sergey
date Mon, 09 Nov 2009 16:49:39 +0300
parents 56cef8e3cda6
children 16ada169ca75
comparison
equal deleted inserted replaced
32:56cef8e3cda6 33:0004faa276dc
1 use strict; 1 use strict;
2 package IMPL::SQL::Schema; 2 package IMPL::SQL::Schema;
3 3
4 use base qw(IMPL::Object IMPL::Object::Disposable); 4 use base qw(IMPL::Object IMPL::Object::Disposable IMPL::Object::Autofill);
5 use IMPL::Class::Property; 5 use IMPL::Class::Property;
6 use IMPL::Class::Property::Direct; 6 use IMPL::Class::Property::Direct;
7 7
8 require IMPL::SQL::Schema::Table; 8 require IMPL::SQL::Schema::Table;
9
10 __PACKAGE__->PassThroughArgs;
9 11
10 BEGIN { 12 BEGIN {
11 public _direct property Version => prop_get; 13 public _direct property Version => prop_get;
12 public _direct property Name => prop_get; 14 public _direct property Name => prop_get;
13 public _direct property Tables => prop_get; 15 public _direct property Tables => prop_get;