Lines 31-37
__PACKAGE__->table("sessions");
Link Here
|
31 |
|
31 |
|
32 |
=head2 a_session |
32 |
=head2 a_session |
33 |
|
33 |
|
34 |
data_type: 'text' |
34 |
data_type: 'mediumtext' |
35 |
is_nullable: 0 |
35 |
is_nullable: 0 |
36 |
|
36 |
|
37 |
=cut |
37 |
=cut |
Lines 40-46
__PACKAGE__->add_columns(
Link Here
|
40 |
"id", |
40 |
"id", |
41 |
{ data_type => "varchar", is_nullable => 0, size => 32 }, |
41 |
{ data_type => "varchar", is_nullable => 0, size => 32 }, |
42 |
"a_session", |
42 |
"a_session", |
43 |
{ data_type => "text", is_nullable => 0 }, |
43 |
{ data_type => "mediumtext", is_nullable => 0 }, |
44 |
); |
44 |
); |
45 |
|
45 |
|
46 |
=head1 PRIMARY KEY |
46 |
=head1 PRIMARY KEY |
Lines 56-63
__PACKAGE__->add_columns(
Link Here
|
56 |
__PACKAGE__->set_primary_key("id"); |
56 |
__PACKAGE__->set_primary_key("id"); |
57 |
|
57 |
|
58 |
|
58 |
|
59 |
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 |
59 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 13:21:59 |
60 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:N/DKx6NVPCcbDVK3SSMfGQ |
60 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gsbP76fskUOelxUl8nAVMQ |
61 |
|
61 |
|
62 |
|
62 |
|
63 |
# You can replace this text with custom content, and it will be preserved on regeneration |
63 |
# You can replace this text with custom content, and it will be preserved on regeneration |
64 |
- |
|
|