aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/DB.pm
blob: d920c809f3a6bc40e537ac8f5d6db8e6d206fd5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use utf8;
package FixMyStreet::DB;

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


# Created by DBIx::Class::Schema::Loader v0.07017 @ 2012-03-08 17:19:55
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CjFpUvon7KggFM7OF7VK/w

use FixMyStreet;

__PACKAGE__->connection(FixMyStreet->dbic_connect_info);

1;