Catalyst-Authentication-Credential-RedmineCookie
view release on metacpan or search on metacpan
lib/Catalyst/Authentication/RedmineCookie/Schema/Result/Users.pm view on Meta::CPAN
use utf8;
package Catalyst::Authentication::RedmineCookie::Schema::Result::Users;
# 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("users");
__PACKAGE__->add_columns(
"id",
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
"login",
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
"hashed_password",
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 40 },
"firstname",
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 30 },
"lastname",
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
"admin",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
"status",
{ data_type => "integer", default_value => 1, is_nullable => 0 },
"last_login_on",
{
data_type => "datetime",
datetime_undef_if_invalid => 1,
is_nullable => 1,
locale => "ja_JP",
timezone => "Asia/Tokyo",
},
"language",
{ data_type => "varchar", default_value => "", is_nullable => 1, size => 5 },
"auth_source_id",
{ data_type => "integer", is_nullable => 1 },
"created_on",
{
data_type => "datetime",
datetime_undef_if_invalid => 1,
is_nullable => 1,
locale => "ja_JP",
timezone => "Asia/Tokyo",
},
"updated_on",
{
data_type => "datetime",
datetime_undef_if_invalid => 1,
is_nullable => 1,
locale => "ja_JP",
timezone => "Asia/Tokyo",
},
"type",
{ data_type => "varchar", is_nullable => 1, size => 255 },
"identity_url",
{ data_type => "varchar", is_nullable => 1, size => 255 },
"mail_notification",
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
"salt",
{ data_type => "varchar", is_nullable => 1, size => 64 },
( run in 0.884 second using v1.01-cache-2.11-cpan-d8267643d1d )