aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/DB/Result/Open311conf.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perllib/FixMyStreet/DB/Result/Open311conf.pm')
-rw-r--r--perllib/FixMyStreet/DB/Result/Open311conf.pm11
1 files changed, 8 insertions, 3 deletions
diff --git a/perllib/FixMyStreet/DB/Result/Open311conf.pm b/perllib/FixMyStreet/DB/Result/Open311conf.pm
index d7621e2c7..0a5784560 100644
--- a/perllib/FixMyStreet/DB/Result/Open311conf.pm
+++ b/perllib/FixMyStreet/DB/Result/Open311conf.pm
@@ -12,7 +12,12 @@ __PACKAGE__->load_components("FilterColumn", "InflateColumn::DateTime", "Encoded
__PACKAGE__->table("open311conf");
__PACKAGE__->add_columns(
"id",
- { data_type => "integer", is_nullable => 0 },
+ {
+ data_type => "integer",
+ is_auto_increment => 1,
+ is_nullable => 0,
+ sequence => "open311conf_id_seq",
+ },
"area_id",
{ data_type => "integer", is_nullable => 0 },
"endpoint",
@@ -26,8 +31,8 @@ __PACKAGE__->set_primary_key("id");
__PACKAGE__->add_unique_constraint("open311conf_area_id_key", ["area_id"]);
-# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-07-29 17:47:55
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:e7DwO1HQwldHk/94RvQj6A
+# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-07-29 18:09:25
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ryqCpvwjNtQrZm4I3s0hxg
# You can replace this text with custom code or comments, and it will be preserved on regeneration