Skip to content

Commit f6d4bcf

Browse files
committed
Added defrep field to database schema
1 parent 1949e74 commit f6d4bcf

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

ADBOS/Schema/Result/Opdef.pm

+10-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ __PACKAGE__->table("opdefs");
4747
is_nullable: 1
4848
size: 2
4949
50+
=head2 defrep
51+
52+
data_type: 'tinyint'
53+
default_value: 0
54+
is_nullable: 1
55+
5056
=head2 number
5157
5258
data_type: 'varchar'
@@ -169,6 +175,8 @@ __PACKAGE__->add_columns(
169175
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
170176
"type",
171177
{ data_type => "char", is_nullable => 1, size => 2 },
178+
"defrep",
179+
{ data_type => "tinyint", default_value => 0, is_nullable => 1 },
172180
"number",
173181
{ data_type => "varchar", is_nullable => 1, size => 16 },
174182
"number_serial",
@@ -324,8 +332,8 @@ __PACKAGE__->has_many(
324332
);
325333

326334

327-
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-05-20 00:21:47
328-
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CWWNWGmaGC6pwH1hxzOhcA
335+
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-05-31 15:01:55
336+
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lcyBZ5Q8GONdZ68ikXpOtA
329337

330338

331339
# You can replace this text with custom content, and it will be preserved on regeneration

0 commit comments

Comments
 (0)