Lines 76-81
__PACKAGE__->table("export_format");
Link Here
|
76 |
is_nullable: 1 |
76 |
is_nullable: 1 |
77 |
size: 255 |
77 |
size: 255 |
78 |
|
78 |
|
|
|
79 |
=head2 used_for |
80 |
|
81 |
data_type: 'varchar' |
82 |
default_value: 'export_records' |
83 |
is_nullable: 1 |
84 |
size: 255 |
85 |
|
79 |
=cut |
86 |
=cut |
80 |
|
87 |
|
81 |
__PACKAGE__->add_columns( |
88 |
__PACKAGE__->add_columns( |
Lines 102-107
__PACKAGE__->add_columns(
Link Here
|
102 |
is_nullable => 1, |
109 |
is_nullable => 1, |
103 |
size => 255, |
110 |
size => 255, |
104 |
}, |
111 |
}, |
|
|
112 |
"used_for", |
113 |
{ |
114 |
data_type => "varchar", |
115 |
default_value => "export_records", |
116 |
is_nullable => 1, |
117 |
size => 255, |
118 |
}, |
105 |
); |
119 |
); |
106 |
|
120 |
|
107 |
=head1 PRIMARY KEY |
121 |
=head1 PRIMARY KEY |
Lines 117-124
__PACKAGE__->add_columns(
Link Here
|
117 |
__PACKAGE__->set_primary_key("export_format_id"); |
131 |
__PACKAGE__->set_primary_key("export_format_id"); |
118 |
|
132 |
|
119 |
|
133 |
|
120 |
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 |
134 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-20 10:12:28 |
121 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AJbxXXJBftCbSKm2E/ZTjA |
135 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cHdb+bBmBVTAK71TNjdqgg |
122 |
|
136 |
|
123 |
|
137 |
|
124 |
# You can replace this text with custom content, and it will be preserved on regeneration |
138 |
# You can replace this text with custom content, and it will be preserved on regeneration |
125 |
- |
|
|