From 86df396491bb4769884e3fc8b2d214bed04b8134 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 1 Jan 2005 19:32:09 +0000 Subject: Added the latest two tables to the DB2 schemas git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@304 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/fixtures/db_definitions/db2.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'activerecord/test') diff --git a/activerecord/test/fixtures/db_definitions/db2.sql b/activerecord/test/fixtures/db_definitions/db2.sql index 7171bd3e16..9361cd5607 100644 --- a/activerecord/test/fixtures/db_definitions/db2.sql +++ b/activerecord/test/fixtures/db_definitions/db2.sql @@ -110,3 +110,15 @@ CREATE TABLE mixins ( PRIMARY KEY (id) ); +CREATE TABLE people ( + id int generated by default as identity (start with +10000), + first_name varchar(40) NOT NULL, + lock_version int default 0, + PRIMARY KEY (id) +); + +CREATE TABLE binaries ( + id int generated by default as identity (start with +10000), + data mediumblob, + PRIMARY KEY (id) +); \ No newline at end of file -- cgit v1.2.3