use utf8;
package CLMApp::Schema::Result::OrderInvoiceSystem;

# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE

=head1 NAME

CLMApp::Schema::Result::OrderInvoiceSystem

=cut

use strict;
use warnings;

use base 'DBIx::Class::Core';

=head1 COMPONENTS LOADED

=over 4

=item * L<DBIx::Class::InflateColumn::DateTime>

=back

=cut

__PACKAGE__->load_components("InflateColumn::DateTime");

=head1 TABLE: C<OrderInvoiceSystem>

=cut

__PACKAGE__->table("OrderInvoiceSystem");

=head1 ACCESSORS

=head2 id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

=head2 systemname

  data_type: 'varchar'
  is_nullable: 1
  size: 255

=head2 systemid

  data_type: 'varchar'
  is_nullable: 1
  size: 255

=head2 invoicesystem

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

=head2 ordersystem

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

=head2 systemfiles

  data_type: 'text'
  is_nullable: 1

=head2 metadata

  data_type: 'text'
  is_nullable: 1

=head2 deleted

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

=head2 created

  data_type: 'datetime'
  datetime_undef_if_invalid: 1
  default_value: '0000-00-00 00:00:00'
  is_nullable: 0

=head2 createdby

  data_type: 'integer'
  default_value: 0
  is_nullable: 0

=head2 updated

  data_type: 'datetime'
  datetime_undef_if_invalid: 1
  default_value: '0000-00-00 00:00:00'
  is_nullable: 0

=head2 updatedby

  data_type: 'integer'
  default_value: 0
  is_nullable: 0

=cut

__PACKAGE__->add_columns(
  "id",
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
  "systemname",
  { data_type => "varchar", is_nullable => 1, size => 255 },
  "systemid",
  { data_type => "varchar", is_nullable => 1, size => 255 },
  "invoicesystem",
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
  "ordersystem",
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
  "systemfiles",
  { data_type => "text", is_nullable => 1 },
  "metadata",
  { data_type => "text", is_nullable => 1 },
  "deleted",
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
  "created",
  {
    data_type => "datetime",
    datetime_undef_if_invalid => 1,
    default_value => "0000-00-00 00:00:00",
    is_nullable => 0,
  },
  "createdby",
  { data_type => "integer", default_value => 0, is_nullable => 0 },
  "updated",
  {
    data_type => "datetime",
    datetime_undef_if_invalid => 1,
    default_value => "0000-00-00 00:00:00",
    is_nullable => 0,
  },
  "updatedby",
  { data_type => "integer", default_value => 0, is_nullable => 0 },
);

=head1 PRIMARY KEY

=over 4

=item * L</id>

=back

=cut

__PACKAGE__->set_primary_key("id");


# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-07-16 13:28:48
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ie4OnFx28aYKSaGbBHViWA


# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;
