Revision 46584b73
Von Kivitendo Admin vor etwa 8 Jahren hinzugefügt
SL/DB/MetaSetup/Assembly.pm | ||
---|---|---|
15 | 15 |
itime => { type => 'timestamp', default => 'now()' }, |
16 | 16 |
mtime => { type => 'timestamp' }, |
17 | 17 |
parts_id => { type => 'integer', not_null => 1 }, |
18 |
position => { type => 'integer' }, |
|
18 | 19 |
qty => { type => 'float', scale => 4 }, |
19 | 20 |
); |
20 | 21 |
|
SL/DB/Part.pm | ||
---|---|---|
21 | 21 |
assemblies => { |
22 | 22 |
type => 'one to many', |
23 | 23 |
class => 'SL::DB::Assembly', |
24 |
manager_args => { sort_by => 'position, oid' }, |
|
24 | 25 |
column_map => { id => 'id' }, |
25 | 26 |
}, |
26 | 27 |
prices => { |
sql/Pg-upgrade2/assembly_position.sql | ||
---|---|---|
1 |
-- @tag: assembly_position |
|
2 |
-- @description: Erzeugniselemente (assembly) erhalten eine Position |
|
3 |
-- @depends: release_3_4_1 |
|
4 |
-- @ignore: 0 |
|
5 |
|
|
6 |
ALTER TABLE assembly ADD COLUMN position INTEGER; |
Auch abrufbar als: Unified diff
Tabelle assembly bekommt eine Positionsspalte
bisher wurde nach oid sortiert.