From 7881e4dae0176aa0cd65fcbafaaf3828a240c9a6 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 19 Apr 2005 10:58:22 +0000 Subject: Fixed OCI fixtures [Ryan Carver] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1225 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/fixtures/db_definitions/oci.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'activerecord') diff --git a/activerecord/test/fixtures/db_definitions/oci.sql b/activerecord/test/fixtures/db_definitions/oci.sql index 62f9ae9fb4..9fa432ccfb 100644 --- a/activerecord/test/fixtures/db_definitions/oci.sql +++ b/activerecord/test/fixtures/db_definitions/oci.sql @@ -199,8 +199,8 @@ create table categories ( ); create table categories_posts ( - category_id integer not null references developers initially deferred disable, - post_id int integer not null references developers initially deferred disable + category_id integer not null references categories initially deferred disable, + post_id integer not null references posts initially deferred disable ); create table fk_test_has_pk ( @@ -209,5 +209,5 @@ create table fk_test_has_pk ( create table fk_test_has_fk ( id integer not null primary key, - fk_id integer not null references fk_test_has_fk initially deferred disable, + fk_id integer not null references fk_test_has_fk initially deferred disable ); -- cgit v1.2.3