From bbe2720e8bb8b6307cb09a0359734b65f0803a5c Mon Sep 17 00:00:00 2001 From: Jacques Distler Date: Fri, 16 Feb 2007 12:53:35 -0600 Subject: [PATCH] Whoops! Forgot to update the database. --- db/production.db.sqlite3 | Bin 19456 -> 19456 bytes db/schema.rb | 86 +++++++++++++++++++-------------------- log/production.log | 2 + 3 files changed, 45 insertions(+), 43 deletions(-) diff --git a/db/production.db.sqlite3 b/db/production.db.sqlite3 index 649297cd69d2722141fd804406d3832c0277137e..4ac372fe17df5fd159b2db9fa9619f67f423c943 100644 GIT binary patch delta 990 zcmah{zi-n}5cab}oj6UR0O?CYow#P85u`{}I{`vgYEYFQ2+~L}RK|)8wbI(D<2D5p zwGJ6zqr9aX6B|qLpHNl=LnoF>?1&AqpkgOZN+JV`^?di;efNELdk0|e0KC$`*>1f< z;6cjzK}606u_FvS0xZrEFZaz4h)tBJ_B2jH2tfy;r-?&!jSirT^o*}mDHPD%}ba6{Birnd8hXg zba`88*fb46Q-!+tSQZp%7^8Cccy5JfmPi8#WwYktjlUu?(JdtCkd*!A&()>dAT!&ake?ug=J7KA4A{s z(bZ;%jY0^McpS>K_x{pT-OvF5 z2o0V+{P~7bVZT3ZciVMe!db4oj(f>062hA zxC4KoH|UR=trsySw^C3>M9Jox4&M+}Q7%=@inYp3VVnMPc;P`d^Ds-7a(A;Ulns$H zdOt@8Jvz&J%a~Cc!6c(-q`$V_!{r^W{AfE9AV!7}gA>P~{{+ksqnO-OT-@jOu-22B zTPQmLrap{m{ii<0>o%DoV_{5^Nhn`>%W0vjI91dZqwP4n-8fk>o<}gbqXd(k+f;eA zYkBW5aJ}Cc_g|-9HiP=sqkGfvk)*G06NmFru>RlWk|hUH>!jek{_uOq|2yv0^Qp$Qod6v;9H3&Ih(moX$LPMJEom$NQe8 Fe*u39KvDnz diff --git a/db/schema.rb b/db/schema.rb index b5aace13..510d1b5f 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -5,74 +5,74 @@ ActiveRecord::Schema.define(:version => 2) do create_table "pages", :force => true do |t| - t.column "created_at", :datetime, :null => false - t.column "updated_at", :datetime, :null => false - t.column "web_id", :integer, :default => 0, :null => false - t.column "locked_by", :string, :limit => 60 - t.column "name", :string, :limit => 60 - t.column "locked_at", :datetime + t.column "created_at", :datetime, :null => false + t.column "updated_at", :datetime, :null => false + t.column "web_id", :integer, :default => 0, :null => false + t.column "locked_by", :string, :limit => 60 + t.column "name", :string, :limit => 60 + t.column "locked_at", :datetime end create_table "revisions", :force => true do |t| - t.column "created_at", :datetime, :null => false - t.column "updated_at", :datetime, :null => false - t.column "revised_at", :datetime, :null => false - t.column "page_id", :integer, :default => 0, :null => false - t.column "content", :text, :default => "", :null => false - t.column "author", :string, :limit => 60 - t.column "ip", :string, :limit => 60 + t.column "created_at", :datetime, :null => false + t.column "updated_at", :datetime, :null => false + t.column "revised_at", :datetime, :null => false + t.column "page_id", :integer, :default => 0, :null => false + t.column "content", :text, :default => "", :null => false + t.column "author", :string, :limit => 60 + t.column "ip", :string, :limit => 60 end - add_index "revisions", ["author"], :name => "revisions_author_index" - add_index "revisions", ["created_at"], :name => "revisions_created_at_index" - add_index "revisions", ["page_id"], :name => "revisions_page_id_index" + add_index "revisions", ["author"], :name => "index_revisions_on_author" + add_index "revisions", ["created_at"], :name => "index_revisions_on_created_at" + add_index "revisions", ["page_id"], :name => "index_revisions_on_page_id" create_table "sessions", :force => true do |t| t.column "session_id", :string - t.column "data", :text + t.column "data", :text t.column "updated_at", :datetime end - add_index "sessions", ["session_id"], :name => "sessions_session_id_index" + add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id" create_table "system", :force => true do |t| t.column "password", :string, :limit => 60 end create_table "webs", :force => true do |t| - t.column "created_at", :datetime, :null => false - t.column "updated_at", :datetime, :null => false - t.column "name", :string, :limit => 60, :default => "", :null => false - t.column "address", :string, :limit => 60, :default => "", :null => false - t.column "password", :string, :limit => 60 + t.column "created_at", :datetime, :null => false + t.column "updated_at", :datetime, :null => false + t.column "name", :string, :limit => 60, :default => "", :null => false + t.column "address", :string, :limit => 60, :default => "", :null => false + t.column "password", :string, :limit => 60 t.column "additional_style", :string - t.column "allow_uploads", :integer, :default => 1 - t.column "published", :integer, :default => 0 - t.column "count_pages", :integer, :default => 0 - t.column "markup", :string, :limit => 50, :default => "markdownMML" - t.column "color", :string, :limit => 6, :default => "008B26" - t.column "max_upload_size", :integer, :default => 100 - t.column "safe_mode", :integer, :default => 0 - t.column "brackets_only", :integer, :default => 0 + t.column "allow_uploads", :integer, :default => 1 + t.column "published", :integer, :default => 0 + t.column "count_pages", :integer, :default => 0 + t.column "markup", :string, :limit => 50, :default => "markdownMML" + t.column "color", :string, :limit => 6, :default => "008B26" + t.column "max_upload_size", :integer, :default => 100 + t.column "safe_mode", :integer, :default => 0 + t.column "brackets_only", :integer, :default => 0 end create_table "wiki_files", :force => true do |t| - t.column "created_at", :datetime, :null => false - t.column "updated_at", :datetime, :null => false - t.column "web_id", :integer, :null => false - t.column "file_name", :string, :null => false - t.column "description", :string, :null => false + t.column "created_at", :datetime, :null => false + t.column "updated_at", :datetime, :null => false + t.column "web_id", :integer, :null => false + t.column "file_name", :string, :null => false + t.column "description", :string, :null => false end create_table "wiki_references", :force => true do |t| - t.column "created_at", :datetime, :null => false - t.column "updated_at", :datetime, :null => false - t.column "page_id", :integer, :default => 0, :null => false - t.column "referenced_name", :string, :limit => 60, :default => "", :null => false - t.column "link_type", :string, :limit => 1, :default => "", :null => false + t.column "created_at", :datetime, :null => false + t.column "updated_at", :datetime, :null => false + t.column "page_id", :integer, :default => 0, :null => false + t.column "referenced_name", :string, :limit => 60, :default => "", :null => false + t.column "link_type", :string, :limit => 1, :default => "", :null => false end - add_index "wiki_references", ["referenced_name"], :name => "wiki_references_referenced_name_index" - add_index "wiki_references", ["page_id"], :name => "wiki_references_page_id_index" + add_index "wiki_references", ["referenced_name"], :name => "index_wiki_references_on_referenced_name" + add_index "wiki_references", ["page_id"], :name => "index_wiki_references_on_page_id" end diff --git a/log/production.log b/log/production.log index 8b84199c..a557a782 100644 --- a/log/production.log +++ b/log/production.log @@ -1,3 +1,5 @@ # Logfile created on Mon Jan 22 07:45:04 CST 2007 by logger.rb/1.5.2.7 Migrating to Beta1Schema (1) Migrating to Beta2ChangesBulk (2) +Migrating to Beta1Schema (1) +Migrating to Beta2ChangesBulk (2)