|
Lines 23-28
__PACKAGE__->table("search_history");
Link Here
|
| 23 |
|
23 |
|
| 24 |
=head1 ACCESSORS |
24 |
=head1 ACCESSORS |
| 25 |
|
25 |
|
|
|
26 |
=head2 id |
| 27 |
|
| 28 |
data_type: 'integer' |
| 29 |
is_auto_increment: 1 |
| 30 |
is_nullable: 0 |
| 31 |
|
| 26 |
=head2 userid |
32 |
=head2 userid |
| 27 |
|
33 |
|
| 28 |
data_type: 'integer' |
34 |
data_type: 'integer' |
|
Lines 67-72
__PACKAGE__->table("search_history");
Link Here
|
| 67 |
=cut |
73 |
=cut |
| 68 |
|
74 |
|
| 69 |
__PACKAGE__->add_columns( |
75 |
__PACKAGE__->add_columns( |
|
|
76 |
"id", |
| 77 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
| 70 |
"userid", |
78 |
"userid", |
| 71 |
{ data_type => "integer", is_nullable => 0 }, |
79 |
{ data_type => "integer", is_nullable => 0 }, |
| 72 |
"sessionid", |
80 |
"sessionid", |
|
Lines 93-101
__PACKAGE__->add_columns(
Link Here
|
| 93 |
}, |
101 |
}, |
| 94 |
); |
102 |
); |
| 95 |
|
103 |
|
|
|
104 |
=head1 PRIMARY KEY |
| 105 |
|
| 106 |
=over 4 |
| 107 |
|
| 108 |
=item * L</id> |
| 109 |
|
| 110 |
=back |
| 111 |
|
| 112 |
=cut |
| 113 |
|
| 114 |
__PACKAGE__->set_primary_key("id"); |
| 115 |
|
| 96 |
|
116 |
|
| 97 |
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-05-05 02:39:48 |
117 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-03-11 14:59:09 |
| 98 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8x/CWZQFWoXcKGVs4h4CWQ |
118 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IDEfmaznxc6sCi0r/8ibhg |
| 99 |
|
119 |
|
| 100 |
|
120 |
|
| 101 |
# You can replace this text with custom content, and it will be preserved on regeneration |
121 |
# You can replace this text with custom content, and it will be preserved on regeneration |
| 102 |
- |
|
|