|
Lines 60-65
__PACKAGE__->table("virtualshelves");
Link Here
|
| 60 |
default_value: current_timestamp |
60 |
default_value: current_timestamp |
| 61 |
is_nullable: 0 |
61 |
is_nullable: 0 |
| 62 |
|
62 |
|
|
|
63 |
=head2 created_on |
| 64 |
|
| 65 |
data_type: 'timestamp' |
| 66 |
datetime_undef_if_invalid: 1 |
| 67 |
default_value: '0000-00-00 00:00:00' |
| 68 |
is_nullable: 0 |
| 69 |
|
| 63 |
=head2 allow_add |
70 |
=head2 allow_add |
| 64 |
|
71 |
|
| 65 |
data_type: 'tinyint' |
72 |
data_type: 'tinyint' |
|
Lines 98-103
__PACKAGE__->add_columns(
Link Here
|
| 98 |
default_value => \"current_timestamp", |
105 |
default_value => \"current_timestamp", |
| 99 |
is_nullable => 0, |
106 |
is_nullable => 0, |
| 100 |
}, |
107 |
}, |
|
|
108 |
"created_on", |
| 109 |
{ |
| 110 |
data_type => "timestamp", |
| 111 |
datetime_undef_if_invalid => 1, |
| 112 |
default_value => "0000-00-00 00:00:00", |
| 113 |
is_nullable => 0, |
| 114 |
}, |
| 101 |
"allow_add", |
115 |
"allow_add", |
| 102 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
116 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
| 103 |
"allow_delete_own", |
117 |
"allow_delete_own", |
|
Lines 171-178
__PACKAGE__->has_many(
Link Here
|
| 171 |
); |
185 |
); |
| 172 |
|
186 |
|
| 173 |
|
187 |
|
| 174 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55 |
188 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-05-14 11:27:16 |
| 175 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xRDCzpS+CXPdp4Mlp2WP6A |
189 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WVMPB7DvigdoNQ07kaT0lA |
| 176 |
|
190 |
|
| 177 |
|
191 |
|
| 178 |
# You can replace this text with custom content, and it will be preserved on regeneration |
192 |
# You can replace this text with custom content, and it will be preserved on regeneration |
| 179 |
- |
|
|