From 558202d3a77529216dffddb2f184a4649da45fac Mon Sep 17 00:00:00 2001 From: Jacques Distler Date: Fri, 16 Feb 2007 12:27:51 -0600 Subject: [PATCH] Make Markdown+itex2MML the default text filter. (After all, that's why people are here...) --- db/migrate/001_beta1_schema.rb | 2 +- db/schema.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/db/migrate/001_beta1_schema.rb b/db/migrate/001_beta1_schema.rb index 8985aa95..bac65340 100644 --- a/db/migrate/001_beta1_schema.rb +++ b/db/migrate/001_beta1_schema.rb @@ -33,7 +33,7 @@ class Beta1Schema < ActiveRecord::Migration 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 => "textile" + 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 diff --git a/db/schema.rb b/db/schema.rb index 2147c8fb..b5aace13 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -49,7 +49,7 @@ ActiveRecord::Schema.define(:version => 2) do 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 => "textile" + 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