Difference between revisions of "Freeside:1.9:Documentation:Developer/bin/freeside-upgrade"

From Freeside
Jump to: navigation, search
(import from POD)
 
m (Edit via perl MediaWiki framework (1.13))
 
Line 4: Line 4:
 
==SYNOPSIS==
 
==SYNOPSIS==
 
<code>
 
<code>
   freeside-upgrade [ -d ] [ -q | -v ]
+
   freeside-upgrade [ -d ] [ -s ] [ -q | -v ]
 
</code>
 
</code>
 
==DESCRIPTION==
 
==DESCRIPTION==
Line 20: Line 20:
 
   [ -v ]: Run verbosely, sending debugging information to STDERR.  This is the
 
   [ -v ]: Run verbosely, sending debugging information to STDERR.  This is the
 
           current default.
 
           current default.
 +
 +
  [ -s ]: Schema changes only.  Useful for Pg/slony slaves where the data
 +
          changes will be replicated from the Pg/slony master.
 
</code>
 
</code>
 
==SEE ALSO==
 
==SEE ALSO==

Latest revision as of 18:18, 6 February 2009

NAME

freeside-upgrade - Upgrades database schema for new freeside verisons.

SYNOPSIS

 freeside-upgrade [ -d ] [ -s ] [ -q | -v ]

DESCRIPTION

Reads your existing database schema and updates it to match the current schema, adding any columns or tables necessary.

Also performs other upgrade functions:

Calls FS:: Misc::prune::prune_applications (probably unnecessary every upgrade, but simply won't find any records to change); If necessary, moves your configuration information from the filesystem in /usr/local/etc/freeside/conf.<datasrc> to the database.

 [ -d ]: Dry run; output SQL statements (to STDOUT) only, but do not execute
         them.

 [ -q ]: Run quietly.  This may become the default at some point.

 [ -v ]: Run verbosely, sending debugging information to STDERR.  This is the
         current default.

 [ -s ]: Schema changes only.  Useful for Pg/slony slaves where the data
         changes will be replicated from the Pg/slony master.

SEE ALSO