From 65b6031574ef4265c0ad034cfdbef97ba257a7ae Mon Sep 17 00:00:00 2001 From: Marcus Ramberg Date: Wed, 7 Jan 2009 21:42:44 +0100 Subject: [PATCH] remove obsolete id --- lib/MojoMojo/Schema/Result/Attachment.pm | 1 - lib/MojoMojo/Schema/Result/Comment.pm | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/MojoMojo/Schema/Result/Attachment.pm b/lib/MojoMojo/Schema/Result/Attachment.pm index 9a31d074..b47e4dd5 100644 --- a/lib/MojoMojo/Schema/Result/Attachment.pm +++ b/lib/MojoMojo/Schema/Result/Attachment.pm @@ -8,7 +8,6 @@ use base qw/MojoMojo::Schema::Base::Result/; __PACKAGE__->load_components(qw/DateTime::Epoch PK::Auto Core/); __PACKAGE__->table("attachment"); __PACKAGE__->add_columns( - "id", "id", { data_type => "INTEGER", is_nullable => 0, size => undef, is_auto_increment => 1 }, "uploaded", diff --git a/lib/MojoMojo/Schema/Result/Comment.pm b/lib/MojoMojo/Schema/Result/Comment.pm index c9445707..948fee45 100644 --- a/lib/MojoMojo/Schema/Result/Comment.pm +++ b/lib/MojoMojo/Schema/Result/Comment.pm @@ -16,7 +16,6 @@ my $textile = Text::Textile2->new( __PACKAGE__->load_components(qw/DateTime::Epoch PK::Auto UTF8Columns Core/); __PACKAGE__->table("comment"); __PACKAGE__->add_columns( - "id", "id", { data_type => "INTEGER", is_nullable => 0, size => undef, is_auto_increment => 1 }, "poster",