aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/db_definitions
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-15 00:46:26 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-15 00:46:26 +0000
commit95314be65be197b6c38c8c93e3f8d1e8b5b0b674 (patch)
tree832f47d883b445e1074a76eb49133623037af3de /activerecord/test/fixtures/db_definitions
parent0a8f382b80efcaf26e2f3a432d07c137b72dd0d3 (diff)
downloadrails-95314be65be197b6c38c8c93e3f8d1e8b5b0b674.tar.gz
rails-95314be65be197b6c38c8c93e3f8d1e8b5b0b674.tar.bz2
rails-95314be65be197b6c38c8c93e3f8d1e8b5b0b674.zip
Added tree mixin and unit tests for all the mixins
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@156 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/db_definitions')
-rwxr-xr-xactiverecord/test/fixtures/db_definitions/mysql.sql12
-rw-r--r--activerecord/test/fixtures/db_definitions/postgresql.sql12
-rw-r--r--activerecord/test/fixtures/db_definitions/sqlite.sql13
-rw-r--r--activerecord/test/fixtures/db_definitions/sqlserver.sql16
4 files changed, 52 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/db_definitions/mysql.sql b/activerecord/test/fixtures/db_definitions/mysql.sql
index 0b96c49dd3..6af00eb7f0 100755
--- a/activerecord/test/fixtures/db_definitions/mysql.sql
+++ b/activerecord/test/fixtures/db_definitions/mysql.sql
@@ -96,3 +96,15 @@ CREATE TABLE `colnametests` (
`references` int(11) NOT NULL,
PRIMARY KEY (`id`)
);
+
+CREATE TABLE `mixins` (
+ `id` int(11) NOT NULL auto_increment,
+ `parent_id` int(11) default NULL,
+ `pos` int(11) default NULL,
+ `lft` int(11) default NULL,
+ `rgt` int(11) default NULL,
+ `root_id` int(11) default NULL,
+ `created_at` datetime default NULL,
+ `updated_at` datetime default NULL,
+ PRIMARY KEY (`id`)
+);
diff --git a/activerecord/test/fixtures/db_definitions/postgresql.sql b/activerecord/test/fixtures/db_definitions/postgresql.sql
index 87db0b7f3f..9bf1035ea3 100644
--- a/activerecord/test/fixtures/db_definitions/postgresql.sql
+++ b/activerecord/test/fixtures/db_definitions/postgresql.sql
@@ -113,3 +113,15 @@ CREATE TABLE colnametests (
id serial,
"references" integer NOT NULL
);
+
+CREATE TABLE mixins (
+ id serial,
+ parent_id integer,
+ pos integer,
+ lft integer,
+ rgt integer,
+ root_id integer,
+ created_at timestamp,
+ updated_at timestamp,
+ PRIMARY KEY (`id`)
+);
diff --git a/activerecord/test/fixtures/db_definitions/sqlite.sql b/activerecord/test/fixtures/db_definitions/sqlite.sql
index 91ca172789..9863fc779f 100644
--- a/activerecord/test/fixtures/db_definitions/sqlite.sql
+++ b/activerecord/test/fixtures/db_definitions/sqlite.sql
@@ -85,3 +85,16 @@ CREATE TABLE 'colnametests' (
'id' INTEGER NOT NULL PRIMARY KEY,
'references' INTEGER NOT NULL
);
+
+CREATE TABLE 'mixins' (
+ 'id' INTEGER NOT NULL PRIMARY KEY,
+ 'parent_id' INTEGER DEFAULT NULL,
+ 'pos' INTEGER DEFAULT NULL,
+ 'lft' INTEGER DEFAULT NULL,
+ 'rgt' INTEGER DEFAULT NULL,
+ 'root_id' INTEGER DEFAULT NULL,
+ 'created_at' DATETIME DEFAULT NULL,
+ 'updated_at' DATETIME DEFAULT NULL
+);
+
+
diff --git a/activerecord/test/fixtures/db_definitions/sqlserver.sql b/activerecord/test/fixtures/db_definitions/sqlserver.sql
index 0ae9780273..555ff00f90 100644
--- a/activerecord/test/fixtures/db_definitions/sqlserver.sql
+++ b/activerecord/test/fixtures/db_definitions/sqlserver.sql
@@ -93,4 +93,18 @@ CREATE TABLE colnametests (
id int NOT NULL IDENTITY(1, 1),
[references] int NOT NULL,
PRIMARY KEY (id)
-); \ No newline at end of file
+);
+
+CREATE TABLE mixins (
+ id int NOT NULL IDENTITY(1, 1),
+ parent_id int default NULL,
+ pos int default NULL,
+ lft int default NULL,
+ rgt int default NULL,
+ root_id int default NULL,
+ created_at datetime default NULL,
+ updated_at datetime default NULL,
+ PRIMARY KEY (id)
+);
+
+