The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Parley::Schema::PreferenceTimeString;
use strict;
use warnings;
use base 'DBIx::Class';

use Parley::Version;  our $VERSION = $Parley::VERSION;

__PACKAGE__->load_components("PK::Auto", "Core");
__PACKAGE__->table("parley.preference_time_string");
__PACKAGE__->add_columns(
    id => {
        data_type => "integer",
        #default_value => "nextval('preference_time_string_preference_time_string_id_seq'::regclass)",
        is_nullable => 0,
        size => 4,
    },
    time_string => {
        data_type => "text",
        is_nullable => 0,
        size => undef,
    },
    sample => {
        data_type => "text",
        is_nullable => 0,
        size => undef,
    },
    comment => {
        data_type => "text",
        is_nullable => 1,
        size => undef,
    },
);
__PACKAGE__->set_primary_key("id");

1;