kivitendo/SL/DB/MetaSetup/SchemaInfo.pm @ 15f58ff3
85da554f | Sven Schöling | # This file has been auto-generated. Do not modify it; it will be overwritten
|
||
# by rose_auto_create_model.pl automatically.
|
||||
package SL::DB::SchemaInfo;
|
||||
use strict;
|
||||
use base qw(SL::DB::Object);
|
||||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->table('schema_info');
|
||
85da554f | Sven Schöling | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->columns(
|
||
itime => { type => 'timestamp', default => 'now()' },
|
||||
3eb3d1b1 | Moritz Bunkus | login => { type => 'text' },
|
||
tag => { type => 'text', not_null => 1 },
|
||||
b8b112a3 | Sven Schöling | );
|
||
85da554f | Sven Schöling | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->primary_key_columns([ 'tag' ]);
|
||
85da554f | Sven Schöling | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->allow_inline_column_values(1);
|
||
85da554f | Sven Schöling | 1;
|
||
;
|