import awesome_nested_set 2.1.6

64cc8bc8cf

git-svn-id: http://svn.redmine.org/redmine/trunk@12687 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2014-01-21 07:54:42 +00:00
parent bdfcfb35a3
commit 3f6a676622
13 changed files with 119 additions and 59 deletions

View File

@@ -6,20 +6,22 @@ sqlite3mem:
database: ":memory:"
postgresql:
adapter: postgresql
encoding: unicode
database: awesome_nested_set_plugin_test
pool: 5
username: postgres
password: postgres
database: awesome_nested_set_plugin_test
min_messages: ERROR
min_messages: warning
mysql:
adapter: mysql2
host: localhost
username: root
password:
password:
database: awesome_nested_set_plugin_test
## Add DB Configuration to run Oracle tests
oracle:
adapter: oracle_enhanced
host: localhost
username: awesome_nested_set_dev
password:
password:
database: xe

View File

@@ -56,6 +56,15 @@ ActiveRecord::Schema.define(:version => 0) do
t.column :depth, :integer
end
create_table :positions, :force => true do |t|
t.column :name, :string
t.column :parent_id, :integer
t.column :lft, :integer
t.column :rgt, :integer
t.column :depth, :integer
t.column :position, :integer
end
create_table :no_depths, :force => true do |t|
t.column :name, :string
t.column :parent_id, :integer