forked from lix-project/hydra
fec08462ee
Note: to upgrade old databases, do a dump with an old Sqlite first; dumping with a new Sqlite will silently discard (!) the contents of the ReleaseSetJobs table.
16 lines
350 B
Perl
16 lines
350 B
Perl
package Hydra::Schema;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use base 'DBIx::Class::Schema';
|
|
|
|
__PACKAGE__->load_classes;
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.04005 @ 2009-03-12 14:17:32
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bK7m5SJjCnJKOckiufcb9w
|
|
|
|
|
|
# You can replace this text with custom content, and it will be preserved on regeneration
|
|
1;
|