update default database and schema to match migration of previous commit

git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@723 a4c988fc-2ded-0310-b66e-134b36920a42
This commit is contained in:
lrbalt 2008-03-04 20:18:04 +00:00
parent 1de273c96e
commit 8d9bca6afd
2 changed files with 4 additions and 4 deletions

View file

@ -2,11 +2,11 @@
# migrations feature of ActiveRecord to incrementally modify your database, and
# then regenerate this schema definition.
ActiveRecord::Schema.define(:version => 37) do
ActiveRecord::Schema.define(:version => 38) do
create_table "contexts", :force => true do |t|
t.column "name", :string, :default => "", :null => false
t.column "position", :integer, :null => false
t.column "position", :string, :default => ""
t.column "hide", :boolean, :default => false
t.column "user_id", :integer, :default => 1
t.column "created_at", :datetime
@ -69,7 +69,7 @@ ActiveRecord::Schema.define(:version => 37) do
create_table "projects", :force => true do |t|
t.column "name", :string, :default => "", :null => false
t.column "position", :integer, :null => false
t.column "position", :string, :default => ""
t.column "user_id", :integer, :default => 1
t.column "description", :text
t.column "state", :string, :limit => 20, :default => "active", :null => false
@ -88,7 +88,7 @@ ActiveRecord::Schema.define(:version => 37) do
t.column "updated_at", :datetime
end
add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id"
add_index "sessions", ["session_id"], :name => "sessions_session_id_index"
create_table "taggings", :force => true do |t|
t.column "taggable_id", :integer

Binary file not shown.