Regenerate SQLite testschema ddl with explicit quoting and generate FKs
[dbsrgits/DBIx-Class.git] / maint / gen_schema
CommitLineData
f54428ab 1#!/usr/bin/env perl
0009fa49 2
3use strict;
4use warnings;
5use lib qw(lib t/lib);
6
064ec2db 7use DBICTest::Schema;
ebf846e8 8use SQL::Translator;
0009fa49 9
ebf846e8 10my $schema = DBICTest::Schema->connect;
181b2261 11print scalar ($schema->storage->deployment_statements(
12 $schema,
13 'SQLite',
14 undef,
15 undef,
4cd3d124 16 {
17 producer_args => { no_transaction => 1 },
18 quote_identifiers => 1,
19 no_comments => 1,
20 },
181b2261 21));