]> 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 8e55393f2f67a0c5bc92729a19bee7cd92d34001..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'
@@ -50,43 +60,78 @@ __PACKAGE__->table("account");
   default_value: 'active'
   is_nullable: 1
 
+=head2 current_room
+
+  data_type: 'integer'
+  is_foreign_key: 1
+  is_nullable: 1
+
 =cut
 
 __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",
   { data_type => "text", is_nullable => 0 },
   "status",
   { data_type => "text", default_value => "active", is_nullable => 1 },
+  "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
 
-=head2 messages
+=head2 current_room
 
-Type: has_many
+Type: belongs_to
 
-Related object: L<Chatty::Schema::Result::Message>
+Related object: L<Chatty::Schema::Result::Room>
 
 =cut
 
-__PACKAGE__->has_many(
-  "messages",
-  "Chatty::Schema::Result::Message",
-  { "foreign.author" => "self.id" },
-  { cascade_copy => 0, cascade_delete => 0 },
+__PACKAGE__->belongs_to(
+  "current_room",
+  "Chatty::Schema::Result::Room",
+  { id => "current_room" },
+  {
+    is_deferrable => 1,
+    join_type     => "LEFT",
+    on_delete     => "CASCADE",
+    on_update     => "CASCADE",
+  },
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-10-13 16:46:39
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pPJdUbHgHvUo4FxblDaJ2g
+# 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.025195 seconds and 4 git commands to generate.