-__PACKAGE__->meta->setup(
- table => 'requirement_spec_versions',
-
- columns => [
- id => { type => 'serial', not_null => 1 },
- version_number => { type => 'integer' },
- description => { type => 'text', not_null => 1 },
- comment => { type => 'text' },
- order_date => { type => 'date' },
- order_number => { type => 'text' },
- order_id => { type => 'integer' },
- itime => { type => 'timestamp', default => 'now()' },
- mtime => { type => 'timestamp' },
- ],
-
- primary_key_columns => [ 'id' ],
+__PACKAGE__->meta->table('requirement_spec_versions');
+
+__PACKAGE__->meta->columns(
+ comment => { type => 'text' },
+ description => { type => 'text', not_null => 1 },
+ id => { type => 'serial', not_null => 1 },
+ itime => { type => 'timestamp', default => 'now()' },
+ mtime => { type => 'timestamp' },
+ version_number => { type => 'integer' },
+);