42 lines
		
	
	
		
			992 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			992 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| use utf8;
 | |
| package App::Netdisco::DB::Result::Log;
 | |
| 
 | |
| # Created by DBIx::Class::Schema::Loader
 | |
| # DO NOT MODIFY THE FIRST PART OF THIS FILE
 | |
| 
 | |
| use strict;
 | |
| use warnings;
 | |
| 
 | |
| use base 'DBIx::Class::Core';
 | |
| __PACKAGE__->table("log");
 | |
| __PACKAGE__->add_columns(
 | |
|   "id",
 | |
|   {
 | |
|     data_type         => "integer",
 | |
|     is_auto_increment => 1,
 | |
|     is_nullable       => 0,
 | |
|     sequence          => "log_id_seq",
 | |
|   },
 | |
|   "creation",
 | |
|   {
 | |
|     data_type     => "timestamp",
 | |
|     default_value => \"current_timestamp",
 | |
|     is_nullable   => 1,
 | |
|     original      => { default_value => \"now()" },
 | |
|   },
 | |
|   "class",
 | |
|   { data_type => "text", is_nullable => 1 },
 | |
|   "entry",
 | |
|   { data_type => "text", is_nullable => 1 },
 | |
|   "logfile",
 | |
|   { data_type => "text", is_nullable => 1 },
 | |
| );
 | |
| 
 | |
| 
 | |
| # Created by DBIx::Class::Schema::Loader v0.07015 @ 2012-01-07 14:20:02
 | |
| # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eonwOHvvzWm88Ug+IGKuzg
 | |
| 
 | |
| 
 | |
| # You can replace this text with custom code or comments, and it will be preserved on regeneration
 | |
| 1;
 |