39b1f7b721c72a97dc6f36bd195b431c1ec6509d
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / make_dbictest_db_plural_tables.pm
1 package make_dbictest_db_plural_tables;
2
3 use strict;
4 use warnings;
5 use DBI;
6 use dbixcsl_test_dir qw/$tdir/;
7
8 eval { require DBD::SQLite };
9 my $class = $@ ? 'SQLite2' : 'SQLite';
10
11 my $fn = "$tdir/dbictest_plural_tables.db";
12
13 unlink($fn);
14 our $dsn = "dbi:$class:dbname=$fn";
15 my $dbh = DBI->connect($dsn);
16 $dbh->do('PRAGMA SYNCHRONOUS = OFF');
17
18 $dbh->do($_) for (
19     q|CREATE TABLE foos (
20         fooid INTEGER PRIMARY KEY,
21         footext TEXT DEFAULT 'footext',
22         foodt TIMESTAMP DEFAULT CURRENT_TIMESTAMP
23       )|,
24     q|CREATE TABLE bars (
25         barid INTEGER PRIMARY KEY,
26         fooref INTEGER REFERENCES foos(fooid)
27       )|,
28     q|INSERT INTO foos (fooid, footext) VALUES (1,'Foo text for number 1')|,
29     q|INSERT INTO foos (fooid, footext) VALUES (2,'Foo record associated with the Bar with barid 3')|,
30     q|INSERT INTO foos (fooid, footext) VALUES (3,'Foo text for number 3')|,
31     q|INSERT INTO foos (fooid, footext) VALUES (4,'Foo text for number 4')|,
32     q|INSERT INTO bars VALUES (1,4)|,
33     q|INSERT INTO bars VALUES (2,3)|,
34     q|INSERT INTO bars VALUES (3,2)|,
35     q|INSERT INTO bars VALUES (4,1)|,
36 );
37
38 END { unlink($fn); }
39
40 1;