aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/DB/Schema.pm
blob: 10bbd434f1c6d8d76e282d8d9b0275e36441edc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use utf8;
package FixMyStreet::DB::Schema;

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

use strict;
use warnings;

use base 'DBIx::Class::Schema';

__PACKAGE__->load_namespaces(
    result_namespace => "+FixMyStreet::DB::Result",
    resultset_namespace => "+FixMyStreet::DB::ResultSet",
);


# 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' );

has cache => ( is => 'rw', lazy => 1, default => sub { {} } );

1;