Lines 47-52
__PACKAGE__->table("discharges");
Link Here
|
47 |
datetime_undef_if_invalid: 1 |
47 |
datetime_undef_if_invalid: 1 |
48 |
is_nullable: 1 |
48 |
is_nullable: 1 |
49 |
|
49 |
|
|
|
50 |
=head2 cancelled |
51 |
|
52 |
data_type: 'timestamp' |
53 |
datetime_undef_if_invalid: 1 |
54 |
is_nullable: 1 |
55 |
|
56 |
=head2 cancellation_reason |
57 |
|
58 |
data_type: 'varchar' |
59 |
is_nullable: 1 |
60 |
size: 80 |
61 |
|
50 |
=cut |
62 |
=cut |
51 |
|
63 |
|
52 |
__PACKAGE__->add_columns( |
64 |
__PACKAGE__->add_columns( |
Lines 66-71
__PACKAGE__->add_columns(
Link Here
|
66 |
datetime_undef_if_invalid => 1, |
78 |
datetime_undef_if_invalid => 1, |
67 |
is_nullable => 1, |
79 |
is_nullable => 1, |
68 |
}, |
80 |
}, |
|
|
81 |
"cancelled", |
82 |
{ |
83 |
data_type => "timestamp", |
84 |
datetime_undef_if_invalid => 1, |
85 |
is_nullable => 1, |
86 |
}, |
87 |
"cancellation_reason", |
88 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
69 |
); |
89 |
); |
70 |
|
90 |
|
71 |
=head1 PRIMARY KEY |
91 |
=head1 PRIMARY KEY |
Lines 103-110
__PACKAGE__->belongs_to(
Link Here
|
103 |
); |
123 |
); |
104 |
|
124 |
|
105 |
|
125 |
|
106 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-09-28 12:09:06 |
126 |
# Created by DBIx::Class::Schema::Loader v0.07052 @ 2025-04-30 10:35:23 |
107 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Wc3EkS92v98jXtena5VaUQ |
127 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nw3IMky+ABLpeC6I54uHQQ |
108 |
|
128 |
|
109 |
|
129 |
|
110 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
130 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
111 |
- |
|
|