summaryrefslogtreecommitdiff
path: root/bin/dbdef-create
blob: 2283b533ff5ad5fd7e165f89b5bf008323ba2534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/perl -Tw

use strict;
use DBI;
use DBIx::DBSchema 0.26;
use FS::UID qw(adminsuidsetup datasrc driver_name);
use FS::Schema;

my $user = shift or die &usage;

$FS::Schema::setup_hack = 1;
$FS::CurrentUser::upgrade_hack = 1;
my($dbh)=adminsuidsetup $user;

#needs to match FS::Record
my($dbdef_file) = "/usr/local/etc/freeside/dbdef.". datasrc;

my $dbdef = new_native DBIx::DBSchema $dbh;

#print $dbdef->pretty_print;

#important
$dbdef->save($dbdef_file);

sub usage {
  die "Usage:\n  dbdef-create user\n";
}