|
Lines 62-67
__PACKAGE__->table("action_logs");
Link Here
|
| 62 |
data_type: 'text' |
62 |
data_type: 'text' |
| 63 |
is_nullable: 1 |
63 |
is_nullable: 1 |
| 64 |
|
64 |
|
|
|
65 |
=head2 interface |
| 66 |
|
| 67 |
data_type: 'varchar' |
| 68 |
is_nullable: 1 |
| 69 |
size: 30 |
| 70 |
|
| 65 |
=cut |
71 |
=cut |
| 66 |
|
72 |
|
| 67 |
__PACKAGE__->add_columns( |
73 |
__PACKAGE__->add_columns( |
|
Lines 84-89
__PACKAGE__->add_columns(
Link Here
|
| 84 |
{ data_type => "integer", is_nullable => 1 }, |
90 |
{ data_type => "integer", is_nullable => 1 }, |
| 85 |
"info", |
91 |
"info", |
| 86 |
{ data_type => "text", is_nullable => 1 }, |
92 |
{ data_type => "text", is_nullable => 1 }, |
|
|
93 |
"interface", |
| 94 |
{ data_type => "varchar", is_nullable => 1, size => 30 }, |
| 87 |
); |
95 |
); |
| 88 |
|
96 |
|
| 89 |
=head1 PRIMARY KEY |
97 |
=head1 PRIMARY KEY |
|
Lines 99-106
__PACKAGE__->add_columns(
Link Here
|
| 99 |
__PACKAGE__->set_primary_key("action_id"); |
107 |
__PACKAGE__->set_primary_key("action_id"); |
| 100 |
|
108 |
|
| 101 |
|
109 |
|
| 102 |
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 |
110 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-25 13:10:24 |
| 103 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KRt26bXGF2SqTrf5u8MSig |
111 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Wmjd736WUdPfIn581rXTzw |
| 104 |
|
112 |
|
| 105 |
|
113 |
|
| 106 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
114 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
| 107 |
- |
|
|