aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/db_definitions/oci.sql
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-07-18 11:06:41 +0000
committerJamis Buck <jamis@37signals.com>2005-07-18 11:06:41 +0000
commit83e2f6ae1e1d4c6863b7c0514d55d7641fbd7513 (patch)
treea5fd59656b43becc1735827fb690835867a8fd91 /activerecord/test/fixtures/db_definitions/oci.sql
parent2e175d35cd4fc4438f6d263c8fe205939cd4b95f (diff)
downloadrails-83e2f6ae1e1d4c6863b7c0514d55d7641fbd7513.tar.gz
rails-83e2f6ae1e1d4c6863b7c0514d55d7641fbd7513.tar.bz2
rails-83e2f6ae1e1d4c6863b7c0514d55d7641fbd7513.zip
Allow unspecified join-table columns to use to their default values when adding to a habtm collection
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1860 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/db_definitions/oci.sql')
-rw-r--r--activerecord/test/fixtures/db_definitions/oci.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/db_definitions/oci.sql b/activerecord/test/fixtures/db_definitions/oci.sql
index 43a54df604..0923651dfc 100644
--- a/activerecord/test/fixtures/db_definitions/oci.sql
+++ b/activerecord/test/fixtures/db_definitions/oci.sql
@@ -70,7 +70,8 @@ create table projects (
create table developers_projects (
developer_id integer not null references developers initially deferred disable,
project_id integer not null references projects initially deferred disable,
- joined_on timestamp default null
+ joined_on timestamp default null,
+ access_level integer default 1
);
-- Try again for 8i
create table developers_projects (