X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FMakeModel.pm;h=c6499a5936c10a791f3d0557173a2ea655361c3b;hb=2d193a2e8467c752922bb124c1f9495ee7413b9d;hp=cc0ae7fcb60b4bb3f01993beb7e91143e8de4984;hpb=f97b07787db5cacc0f90338fdb3c1237262917cb;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/MakeModel.pm b/SL/DB/MetaSetup/MakeModel.pm index cc0ae7fcb..c6499a593 100644 --- a/SL/DB/MetaSetup/MakeModel.pm +++ b/SL/DB/MetaSetup/MakeModel.pm @@ -10,12 +10,15 @@ __PACKAGE__->meta->setup( table => 'makemodel', columns => [ - parts_id => { type => 'integer' }, - model => { type => 'text' }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - make => { type => 'integer' }, - id => { type => 'serial', not_null => 1 }, + parts_id => { type => 'integer' }, + model => { type => 'text' }, + itime => { type => 'timestamp', default => 'now()' }, + mtime => { type => 'timestamp' }, + lastcost => { type => 'numeric', precision => 5, scale => 15 }, + lastupdate => { type => 'date' }, + sortorder => { type => 'integer' }, + make => { type => 'integer' }, + id => { type => 'serial', not_null => 1 }, ], primary_key_columns => [ 'id' ],