added .propertiesfiles tro svn:ignore.
Renamed ant projects to: migrate-db-oracle and migrate-db-postgre in order to distinguish them in Eclipse IDE. Added comment with example ORACLE_HOME value in oracle.properties.template.
This commit is contained in:
parent
77d59f707d
commit
ba5135d911
|
@ -1,4 +1,4 @@
|
|||
<project name="migrate-db" default="run-scripts" basedir=".">
|
||||
<project name="migrate-db-oracle" default="run-scripts" basedir=".">
|
||||
<property file="../oracle.properties" />
|
||||
<path id="lib.path">
|
||||
<fileset dir="../../tools/lib">
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<project name="migrate-db" default="run-scripts" basedir=".">
|
||||
<project name="migrate-db-postgre" default="run-scripts" basedir=".">
|
||||
<property file="../../postgresql.properties" />
|
||||
<path id="lib.path">
|
||||
<fileset dir="../../../tools/lib">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# This formats all the SQL files in the specified directory so that
|
||||
# they can be executed by SQL*Plus. There are two modes -- a 'testing'
|
||||
# mode (the default mode -- this stips out all the "commit" statements)
|
||||
# mode (the default mode -- this strips out all the "commit" statements)
|
||||
# and a commit mode for deployment. You need to pipe the output of this
|
||||
# script into sqlplus, for example:
|
||||
# ./migrate.sh 313-314 commit | sqlplus adempiere/adempiere
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#ORACLE_HOME
|
||||
#Example Value: oracle.home=C:/oracle/xe/app/oracle/product/10.2.0/server
|
||||
oracle.home=
|
||||
|
||||
#sqlplus connection string
|
||||
|
|
Loading…
Reference in New Issue