diff options
author | Michael Koziarski <michael@koziarski.com> | 2006-03-15 01:31:00 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2006-03-15 01:31:00 +0000 |
commit | eccf39203f21a03fdeb55ba3ce6afcd8f791f92c (patch) | |
tree | f4900e8c0c0bab2a5bbb4139c7ad74d79773037f /activerecord | |
parent | 953d7c9aa4f1cf9ec16cbfcdeb2b1703df7d51a3 (diff) | |
download | rails-eccf39203f21a03fdeb55ba3ce6afcd8f791f92c.tar.gz rails-eccf39203f21a03fdeb55ba3ce6afcd8f791f92c.tar.bz2 rails-eccf39203f21a03fdeb55ba3ce6afcd8f791f92c.zip |
Correct syntax error in postgresql schema definition
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3868 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/fixtures/db_definitions/postgresql.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/db_definitions/postgresql.sql b/activerecord/test/fixtures/db_definitions/postgresql.sql index bbdf38c605..175e8494bb 100644 --- a/activerecord/test/fixtures/db_definitions/postgresql.sql +++ b/activerecord/test/fixtures/db_definitions/postgresql.sql @@ -8,7 +8,7 @@ CREATE TABLE accounts ( ); CREATE TABLE funny_jokes ( - id serial + id serial, name character varying(50) ); |