aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/DB/Schema.pm
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2017-07-16 21:52:54 +0100
committerStruan Donald <struan@exo.org.uk>2017-08-09 17:14:49 +0100
commitfe4153e367bcbb74eebed9c8ac0126d94709506c (patch)
tree692cb8c92ccbc894809b89f63d17c028fd026745 /perllib/FixMyStreet/DB/Schema.pm
parente00c75d7f19bc45879c254ea77dce32df825f3a7 (diff)
Set up translatable body name.
Diffstat (limited to 'perllib/FixMyStreet/DB/Schema.pm')
-rw-r--r--perllib/FixMyStreet/DB/Schema.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/DB/Schema.pm b/perllib/FixMyStreet/DB/Schema.pm
index 7833ee68c..45d731c33 100644
--- a/perllib/FixMyStreet/DB/Schema.pm
+++ b/perllib/FixMyStreet/DB/Schema.pm
@@ -18,8 +18,11 @@ __PACKAGE__->load_namespaces(
# Created by DBIx::Class::Schema::Loader v0.07035 @ 2017-07-13 14:15:09
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UpH30RXb6SbCqRv2FPmpkg
+use Moo;
use FixMyStreet;
__PACKAGE__->connection(FixMyStreet->dbic_connect_info);
+has lang => ( is => 'rw' );
+
1;