Remove the longDescription field

It's not useful and takes up a lot of space.
This commit is contained in:
Eelco Dolstra
2014-09-30 15:43:32 +02:00
parent f4acc9a522
commit 9b38b5f134
8 changed files with 3 additions and 19 deletions

View File

@ -531,7 +531,6 @@ sub checkBuild {
$build = $job->builds->create(
{ timestamp => $time
, description => $buildInfo->{description}
, longdescription => $buildInfo->{longDescription}
, license => $buildInfo->{license}
, homepage => $buildInfo->{homepage}
, maintainers => $buildInfo->{maintainers}

View File

@ -89,11 +89,6 @@ __PACKAGE__->table("Builds");
data_type: 'text'
is_nullable: 0
=head2 longdescription
data_type: 'text'
is_nullable: 1
=head2 license
data_type: 'text'
@ -228,8 +223,6 @@ __PACKAGE__->add_columns(
{ data_type => "text", is_nullable => 0 },
"system",
{ data_type => "text", is_nullable => 0 },
"longdescription",
{ data_type => "text", is_nullable => 1 },
"license",
{ data_type => "text", is_nullable => 1 },
"homepage",
@ -527,8 +520,8 @@ __PACKAGE__->many_to_many(
);
# Created by DBIx::Class::Schema::Loader v0.07033 @ 2013-08-15 00:20:01
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:U1j/qm0vslb6Jvgu5mGMtw
# Created by DBIx::Class::Schema::Loader v0.07033 @ 2014-09-30 15:38:03
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kMPje7yi/yDqxGRQcC2I/Q
__PACKAGE__->has_many(
"dependents",

View File

@ -72,8 +72,6 @@ EOF
$res .= " meta = {\n";
$res .= " description = ${\escape $build->description};\n"
if $build->description;
$res .= " longDescription = ${\escape $build->longdescription};\n"
if $build->longdescription;
$res .= " license = ${\escape $build->license};\n"
if $build->license;
$res .= " maintainers = ${\escape $build->maintainers};\n"