- or download this
#!/usr/bin/perl -w
use strict;
...
unless! ( $schema );
exit;
- or download this
#!/usr/bin/perl -w
use strict;
...
if ($schema);
exit;
- or download this
CREATE DATABASE CPC;
...
cd INTEGER NOT NULL REFERENCES cd(cdid),
title TEXT NOT NULL
);
- or download this
package Germinate::Schema;
use strict;
...
__PACKAGE__->add_unique_constraint( track_title => [ qw/ title / ], );
1;