Skip to content

Commit

Permalink
Fixed weird names
Browse files Browse the repository at this point in the history
  • Loading branch information
kthakore committed Mar 8, 2011
1 parent e14d55f commit 31a289b
Show file tree
Hide file tree
Showing 24 changed files with 184 additions and 55 deletions.
4 changes: 2 additions & 2 deletions implementation/SIMS/SIMS/lib/SIMS/Schema.pm
Expand Up @@ -14,8 +14,8 @@ extends 'DBIx::Class::Schema';
__PACKAGE__->load_namespaces; __PACKAGE__->load_namespaces;




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dr16QI2oINDjtI7l33SN2g # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m9o9+XlaFE51ao2l9A/n0g




# You can replace this text with custom content, and it will be preserved on regeneration # You can replace this text with custom content, and it will be preserved on regeneration
Expand Down
11 changes: 8 additions & 3 deletions implementation/SIMS/SIMS/lib/SIMS/Schema/Result/Event.pm
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("Event");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"Event_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 ref_id =head2 ref_id
Expand Down Expand Up @@ -57,7 +58,11 @@ __PACKAGE__->table("Event");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"Event_id_seq\"'::regclass)",
is_nullable => 0,
},
"ref_id", "ref_id",
{ data_type => "integer", is_nullable => 0 }, { data_type => "integer", is_nullable => 0 },
"refers_to", "refers_to",
Expand All @@ -72,8 +77,8 @@ __PACKAGE__->add_columns(
__PACKAGE__->set_primary_key("id"); __PACKAGE__->set_primary_key("id");




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:S8ZFs7vQmrnhvcWbaEdZkg # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YyxTzkZhoQE0Y5fCLW65CQ
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Event.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Event.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
11 changes: 8 additions & 3 deletions implementation/SIMS/SIMS/lib/SIMS/Schema/Result/Fund.pm
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("Fund");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"Fund_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 type =head2 type
Expand All @@ -52,7 +53,11 @@ __PACKAGE__->table("Fund");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"Fund_id_seq\"'::regclass)",
is_nullable => 0,
},
"type", "type",
{ data_type => "text", is_nullable => 1 }, { data_type => "text", is_nullable => 1 },
"value", "value",
Expand Down Expand Up @@ -82,8 +87,8 @@ __PACKAGE__->has_many(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SbvbA1+ntLUK8e1HNwpK7A # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Y2BgK3hellmugQZyS/um0w
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Fund.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Fund.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
11 changes: 8 additions & 3 deletions implementation/SIMS/SIMS/lib/SIMS/Schema/Result/Meeting.pm
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("Meeting");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"Meeting_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 student_id =head2 student_id
Expand Down Expand Up @@ -73,7 +74,11 @@ __PACKAGE__->table("Meeting");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"Meeting_id_seq\"'::regclass)",
is_nullable => 0,
},
"student_id", "student_id",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
"datetime", "datetime",
Expand Down Expand Up @@ -146,8 +151,8 @@ __PACKAGE__->has_many(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CzG9lGJ8hcwWJEWyWNtd9Q # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IFjT/ssQ99dkwW/RHtTGLw
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Meeting.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Meeting.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
Expand Up @@ -113,8 +113,8 @@ __PACKAGE__->belongs_to(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3uoEcERB6uyFrAVLrb6xZw # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Iyui1VMq31pm4z5B6p4ZFg
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/MeetingAdvisor.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/MeetingAdvisor.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("MeetingComments");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"MeetingComments_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 meeting_id =head2 meeting_id
Expand Down Expand Up @@ -54,7 +55,11 @@ __PACKAGE__->table("MeetingComments");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"MeetingComments_id_seq\"'::regclass)",
is_nullable => 0,
},
"meeting_id", "meeting_id",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
"commenter_id", "commenter_id",
Expand Down Expand Up @@ -109,8 +114,8 @@ __PACKAGE__->belongs_to(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:411xKMsDdUoReVMPTJmahQ # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gdmJ0dQV9kUZY0X0UJJ/ZA
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/MeetingComment.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/MeetingComment.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("MeetingConfirmation");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"MeetingConfirmation_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 key =head2 key
Expand All @@ -47,7 +48,11 @@ __PACKAGE__->table("MeetingConfirmation");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"MeetingConfirmation_id_seq\"'::regclass)",
is_nullable => 0,
},
"key", "key",
{ data_type => "text", is_nullable => 1 }, { data_type => "text", is_nullable => 1 },
"status", "status",
Expand Down Expand Up @@ -75,8 +80,8 @@ __PACKAGE__->has_many(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5I+pGxsZirYv84ivtqkUzw # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0TSqlnSnKeUm3rhZyOjfkQ
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/MeetingConfirmation.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/MeetingConfirmation.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
11 changes: 8 additions & 3 deletions implementation/SIMS/SIMS/lib/SIMS/Schema/Result/Plan.pm
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("Plan");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"Plan_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 name =head2 name
Expand All @@ -37,7 +38,11 @@ __PACKAGE__->table("Plan");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"Plan_id_seq\"'::regclass)",
is_nullable => 0,
},
"name", "name",
{ data_type => "text", is_nullable => 1 }, { data_type => "text", is_nullable => 1 },
); );
Expand All @@ -61,8 +66,8 @@ __PACKAGE__->has_many(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/AilXNonuwtq+UQDMGdDqA # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MXKqEly+Y1D8K7eW1RvzPQ
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Plan.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Plan.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
Expand Up @@ -78,8 +78,8 @@ __PACKAGE__->belongs_to(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m2qRMmzdV6INbZZW++EhAg # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MwvX0q+NNnXcQgFaagsOrQ
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/PlanStudent.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/PlanStudent.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
11 changes: 8 additions & 3 deletions implementation/SIMS/SIMS/lib/SIMS/Schema/Result/Report.pm
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("Report");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"Report_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 name =head2 name
Expand All @@ -52,7 +53,11 @@ __PACKAGE__->table("Report");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"Report_id_seq\"'::regclass)",
is_nullable => 0,
},
"name", "name",
{ data_type => "text", is_nullable => 1 }, { data_type => "text", is_nullable => 1 },
"query", "query",
Expand All @@ -65,8 +70,8 @@ __PACKAGE__->add_columns(
__PACKAGE__->set_primary_key("id"); __PACKAGE__->set_primary_key("id");




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L+FZjs8FiLg+brSKzZIBfw # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wSw7LWHRTYnQ76/QtrBpmg
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Report.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Report.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
11 changes: 8 additions & 3 deletions implementation/SIMS/SIMS/lib/SIMS/Schema/Result/Role.pm
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("Role");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"Role_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 role =head2 role
Expand All @@ -42,7 +43,11 @@ __PACKAGE__->table("Role");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"Role_id_seq\"'::regclass)",
is_nullable => 0,
},
"role", "role",
{ data_type => "text", is_nullable => 1 }, { data_type => "text", is_nullable => 1 },
"name", "name",
Expand All @@ -68,8 +73,8 @@ __PACKAGE__->has_many(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:h2+OUqPb4zDnh4PQpqx8Yg # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IG4tk8ocWFYurH1L4RhpOw
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Role.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Role.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
11 changes: 8 additions & 3 deletions implementation/SIMS/SIMS/lib/SIMS/Schema/Result/Student.pm
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("Student");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"Student_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 user_id =head2 user_id
Expand Down Expand Up @@ -88,7 +89,11 @@ __PACKAGE__->table("Student");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"Student_id_seq\"'::regclass)",
is_nullable => 0,
},
"user_id", "user_id",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
"name", "name",
Expand Down Expand Up @@ -197,8 +202,8 @@ __PACKAGE__->has_many(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ois5ScGESQ2G4hhZKwvYxQ # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WOzh6wxurSHKXUJ+CREh+A
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Student.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Student.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
Expand Up @@ -78,8 +78,8 @@ __PACKAGE__->belongs_to(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wvQpDVXxmeK1E3I9gSWj2w # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hyxvzF0BrjqeHKDwcSIWPw
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/StudentSupervisor.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/StudentSupervisor.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
11 changes: 8 additions & 3 deletions implementation/SIMS/SIMS/lib/SIMS/Schema/Result/Supervisor.pm
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("Supervisor");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"Supervisor_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 user_id =head2 user_id
Expand All @@ -48,7 +49,11 @@ __PACKAGE__->table("Supervisor");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"Supervisor_id_seq\"'::regclass)",
is_nullable => 0,
},
"user_id", "user_id",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
"name", "name",
Expand Down Expand Up @@ -96,8 +101,8 @@ __PACKAGE__->belongs_to(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Zc60/XNrLhiLKBWQrIg+wQ # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cDOei4j8KXo4PLbKsCavkA
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Supervisor.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Supervisor.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down
11 changes: 8 additions & 3 deletions implementation/SIMS/SIMS/lib/SIMS/Schema/Result/Term.pm
Expand Up @@ -26,6 +26,7 @@ __PACKAGE__->table("Term");
=head2 id =head2 id
data_type: 'integer' data_type: 'integer'
default_value: nextval('"Term_id_seq"'::regclass)
is_nullable: 0 is_nullable: 0
=head2 termdate =head2 termdate
Expand All @@ -42,7 +43,11 @@ __PACKAGE__->table("Term");


__PACKAGE__->add_columns( __PACKAGE__->add_columns(
"id", "id",
{ data_type => "integer", is_nullable => 0 }, {
data_type => "integer",
default_value => \"nextval('\"Term_id_seq\"'::regclass)",
is_nullable => 0,
},
"termdate", "termdate",
{ data_type => "date", is_nullable => 1 }, { data_type => "date", is_nullable => 1 },
"length", "length",
Expand Down Expand Up @@ -83,8 +88,8 @@ __PACKAGE__->has_many(
); );




# Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-07 23:32:06 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2011-03-08 01:01:26
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gw0XM8+hE3fgwj30cNgjxQ # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:94Q7vcuu6o8FquMJyefhQg
# These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Term.pm' found in @INC. # These lines were loaded from '/home/kthakore/.perl5/perls/perl-5.12.2/lib/site_perl/5.12.2/SIMS/Schema/Result/Term.pm' found in @INC.
# They are now part of the custom portion of this file # They are now part of the custom portion of this file
# for you to hand-edit. If you do not either delete # for you to hand-edit. If you do not either delete
Expand Down

0 comments on commit 31a289b

Please sign in to comment.