Lines 50-55
__PACKAGE__->table("serial");
Link Here
|
50 |
is_nullable: 0 |
50 |
is_nullable: 0 |
51 |
size: 100 |
51 |
size: 100 |
52 |
|
52 |
|
|
|
53 |
=head2 serialseq_x |
54 |
|
55 |
data_type: 'varchar' |
56 |
is_nullable: 1 |
57 |
size: 100 |
58 |
|
59 |
=head2 serialseq_y |
60 |
|
61 |
data_type: 'varchar' |
62 |
is_nullable: 1 |
63 |
size: 100 |
64 |
|
65 |
=head2 serialseq_z |
66 |
|
67 |
data_type: 'varchar' |
68 |
is_nullable: 1 |
69 |
size: 100 |
70 |
|
53 |
=head2 status |
71 |
=head2 status |
54 |
|
72 |
|
55 |
data_type: 'tinyint' |
73 |
data_type: 'tinyint' |
Lines 101-106
__PACKAGE__->add_columns(
Link Here
|
101 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, |
119 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, |
102 |
"serialseq", |
120 |
"serialseq", |
103 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, |
121 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, |
|
|
122 |
"serialseq_x", |
123 |
{ data_type => "varchar", is_nullable => 1, size => 100 }, |
124 |
"serialseq_y", |
125 |
{ data_type => "varchar", is_nullable => 1, size => 100 }, |
126 |
"serialseq_z", |
127 |
{ data_type => "varchar", is_nullable => 1, size => 100 }, |
104 |
"status", |
128 |
"status", |
105 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
129 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
106 |
"planneddate", |
130 |
"planneddate", |
Lines 147-155
__PACKAGE__->has_many(
Link Here
|
147 |
); |
171 |
); |
148 |
|
172 |
|
149 |
|
173 |
|
150 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-28 10:10:55 |
174 |
# Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-01-13 08:45:45 |
151 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xscBtY2sJRoXXw7hVPTqCQ |
175 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:F8r3hbF7K6ZLgSFQDP9xZA |
152 |
|
176 |
|
153 |
|
177 |
|
154 |
# You can replace this text with custom content, and it will be preserved on regeneration |
178 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
155 |
1; |
179 |
1; |
156 |
- |
|
|