diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-09-06 22:45:00 +0200 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-09-06 22:45:00 +0200 |
commit | 82562f5d336efb48cdfea7bf1c4ba9014a8adece (patch) | |
tree | 3043a551b387b8b281e0f4441aedf519f87b7b56 /sonar-server | |
parent | b455949b54c39efec0bb2b204553e3e44808a228 (diff) | |
download | sonarqube-82562f5d336efb48cdfea7bf1c4ba9014a8adece.tar.gz sonarqube-82562f5d336efb48cdfea7bf1c4ba9014a8adece.zip |
Remove Oracle specific settings
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/config/initializers/oracle.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/config/initializers/oracle.rb b/sonar-server/src/main/webapp/WEB-INF/config/initializers/oracle.rb deleted file mode 100644 index a5db8326420..00000000000 --- a/sonar-server/src/main/webapp/WEB-INF/config/initializers/oracle.rb +++ /dev/null @@ -1,11 +0,0 @@ -ActiveRecord::ConnectionAdapters::OracleEnhancedAdapter.class_eval do - # id columns and columns which end with _id will always be converted to integers - self.emulate_integers_by_column_name = false - # DATE columns which include "date" in name will be converted to Date, otherwise to Time - self.emulate_dates_by_column_name = false - # true and false will be stored as 'Y' and 'N' - self.emulate_booleans_from_strings = false - # start primary key sequences from 1 (and not 10000) and take just one next value in each session - self.default_sequence_start_value = "1 NOCACHE INCREMENT BY 1" - # other settings ... -end
\ No newline at end of file |