aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/db_definitions/oci.sql
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/fixtures/db_definitions/oci.sql')
-rw-r--r--activerecord/test/fixtures/db_definitions/oci.sql6
1 files changed, 3 insertions, 3 deletions
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
);