]> Dogcows Code - chaz/chatty/blobdiff - lib/Chatty/Schema/Result/Account.pm
add comet support for real-time chatting
[chaz/chatty] / lib / Chatty / Schema / Result / Account.pm
index 60b33b1826d7441833539f8384eeddd281e0b4b6..cedd0aece1c2ca680901176f61362b3e703076db 100644 (file)
@@ -1,21 +1,36 @@
+use utf8;
 package Chatty::Schema::Result::Account;
 
 # Created by DBIx::Class::Schema::Loader
 # DO NOT MODIFY THE FIRST PART OF THIS FILE
 
+=head1 NAME
+
+Chatty::Schema::Result::Account
+
+=cut
+
 use strict;
 use warnings;
 
 use Moose;
 use MooseX::NonMoose;
-use namespace::autoclean;
+use MooseX::MarkAsMethods autoclean => 1;
 extends 'DBIx::Class::Core';
 
-__PACKAGE__->load_components("InflateColumn::DateTime", "TimeStamp");
+=head1 COMPONENTS LOADED
 
-=head1 NAME
+=over 4
 
-Chatty::Schema::Result::Account
+=item * L<DBIx::Class::InflateColumn::DateTime>
+
+=back
+
+=cut
+
+__PACKAGE__->load_components("InflateColumn::DateTime");
+
+=head1 TABLE: C<account>
 
 =cut
 
@@ -29,11 +44,6 @@ __PACKAGE__->table("account");
   is_auto_increment: 1
   is_nullable: 0
 
-=head2 email
-
-  data_type: 'text'
-  is_nullable: 1
-
 =head2 username
 
   data_type: 'text'
@@ -61,8 +71,6 @@ __PACKAGE__->table("account");
 __PACKAGE__->add_columns(
   "id",
   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
-  "email",
-  { data_type => "text", is_nullable => 1 },
   "username",
   { data_type => "text", is_nullable => 1 },
   "password",
@@ -72,7 +80,31 @@ __PACKAGE__->add_columns(
   "current_room",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
 );
+
+=head1 PRIMARY KEY
+
+=over 4
+
+=item * L</id>
+
+=back
+
+=cut
+
 __PACKAGE__->set_primary_key("id");
+
+=head1 UNIQUE CONSTRAINTS
+
+=head2 C<username_unique>
+
+=over 4
+
+=item * L</username>
+
+=back
+
+=cut
+
 __PACKAGE__->add_unique_constraint("username_unique", ["username"]);
 
 =head1 RELATIONS
@@ -97,24 +129,9 @@ __PACKAGE__->belongs_to(
   },
 );
 
-=head2 messages
-
-Type: has_many
-
-Related object: L<Chatty::Schema::Result::Message>
-
-=cut
-
-__PACKAGE__->has_many(
-  "messages",
-  "Chatty::Schema::Result::Message",
-  { "foreign.author" => "self.id" },
-  { cascade_copy => 0, cascade_delete => 0 },
-);
-
 
-# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-10-17 20:21:50
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jbeLiaDPsjHNHj5O11tPFA
+# Created by DBIx::Class::Schema::Loader v0.07015 @ 2012-01-03 16:58:35
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vESFaWXuN0WYXW2Y18BfRg
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration
This page took 0.019383 seconds and 4 git commands to generate.