X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fchatty;a=blobdiff_plain;f=lib%2FChatty%2FSchema%2FResult%2FMessage.pm;h=78a74412e0bc23f21972a21a6e2cbccba3529a56;hp=792713dc545dc3f8c2b0994f17e066a0bb332bc9;hb=d2a57728529b95fa1c2e3da677e64c848e7d065b;hpb=9b535163e614abc2ef39b43fa4aef90e644efa41 diff --git a/lib/Chatty/Schema/Result/Message.pm b/lib/Chatty/Schema/Result/Message.pm index 792713d..78a7441 100644 --- a/lib/Chatty/Schema/Result/Message.pm +++ b/lib/Chatty/Schema/Result/Message.pm @@ -32,7 +32,7 @@ __PACKAGE__->table("message"); =head2 posted data_type: 'timestamp' - default_value: NOW + default_value: current_timestamp is_nullable: 1 =head2 author @@ -58,7 +58,11 @@ __PACKAGE__->add_columns( "id", { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, "posted", - { data_type => "timestamp", default_value => \"NOW", is_nullable => 1 }, + { + data_type => "timestamp", + default_value => \"current_timestamp", + is_nullable => 1, + }, "author", { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, "room", @@ -111,8 +115,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-10-13 18:47:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:q1cq2bWftQPoo8huOftzMQ +# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-10-17 20:21:50 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:R28y3tHGM5FZTILUAO/0XA # You can replace this text with custom code or comments, and it will be preserved on regeneration