Bug 12375 [2] - Update Serial schema file
Signed-off-by: Paul Landers <paul.landers@ttuhsc.edu>
This commit is contained in:
parent
33ff797c6b
commit
8438d7e076
1 changed files with 27 additions and 3 deletions
|
@ -50,6 +50,24 @@ __PACKAGE__->table("serial");
|
|||
is_nullable: 0
|
||||
size: 100
|
||||
|
||||
=head2 serialseq_x
|
||||
|
||||
data_type: 'varchar'
|
||||
is_nullable: 1
|
||||
size: 100
|
||||
|
||||
=head2 serialseq_y
|
||||
|
||||
data_type: 'varchar'
|
||||
is_nullable: 1
|
||||
size: 100
|
||||
|
||||
=head2 serialseq_z
|
||||
|
||||
data_type: 'varchar'
|
||||
is_nullable: 1
|
||||
size: 100
|
||||
|
||||
=head2 status
|
||||
|
||||
data_type: 'tinyint'
|
||||
|
@ -107,6 +125,12 @@ __PACKAGE__->add_columns(
|
|||
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 100 },
|
||||
"serialseq",
|
||||
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 100 },
|
||||
"serialseq_x",
|
||||
{ data_type => "varchar", is_nullable => 1, size => 100 },
|
||||
"serialseq_y",
|
||||
{ data_type => "varchar", is_nullable => 1, size => 100 },
|
||||
"serialseq_z",
|
||||
{ data_type => "varchar", is_nullable => 1, size => 100 },
|
||||
"status",
|
||||
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
|
||||
"planneddate",
|
||||
|
@ -155,9 +179,9 @@ __PACKAGE__->has_many(
|
|||
);
|
||||
|
||||
|
||||
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-05 10:45:52
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cZDEO4olHbgGR1gmn5qgCw
|
||||
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-31 11:56:58
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nJ8tcbP/wWWbIic0hSUmBA
|
||||
|
||||
|
||||
# You can replace this text with custom content, and it will be preserved on regeneration
|
||||
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
||||
1;
|
||||
|
|
Loading…
Reference in a new issue