Updated the datasource names default tip
authorJosh Reed <jareed@andrill.org>
Wed Mar 12 23:25:38 2008 -0500 (4 years ago)
changeset 1083edce12b79
parent 0 812603daad94
Updated the datasource names
grails-app/conf/DataSource.groovy
     1.1 --- a/grails-app/conf/DataSource.groovy	Wed Mar 12 23:11:37 2008 -0500
     1.2 +++ b/grails-app/conf/DataSource.groovy	Wed Mar 12 23:25:38 2008 -0500
     1.3 @@ -14,19 +14,19 @@
     1.4  	development {
     1.5  		dataSource {
     1.6  			dbCreate = "create-drop" // one of 'create', 'create-drop','update'
     1.7 -			url = "jdbc:hsqldb:mem:devDB"
     1.8 +			url = "jdbc:hsqldb:mem:timelinesDevDb"
     1.9  		}
    1.10  	}
    1.11  	test {
    1.12  		dataSource {
    1.13  			dbCreate = "update"
    1.14 -			url = "jdbc:hsqldb:mem:testDb"
    1.15 +			url = "jdbc:hsqldb:mem:timelinesTestDb"
    1.16  		}
    1.17  	}
    1.18  	production {
    1.19  		dataSource {
    1.20  			dbCreate = "update"
    1.21 -			url = "jdbc:hsqldb:file:prodDb;shutdown=true"
    1.22 +			url = "jdbc:hsqldb:file:timelinesDb;shutdown=true"
    1.23  		}
    1.24  	}
    1.25  }
    1.26 \ No newline at end of file