Merge branch 'bzr/golem' of /Users/distler/Sites/code/instiki
This commit is contained in:
commit
0f4f7bc04a
3 changed files with 28 additions and 19 deletions
9
db/migrate/20100101192755_modify_referenced_name_type.rb
Normal file
9
db/migrate/20100101192755_modify_referenced_name_type.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
class ModifyReferencedNameType < ActiveRecord::Migration
|
||||
def self.up
|
||||
change_column :wiki_references, :referenced_name, :string, :limit => 255
|
||||
end
|
||||
|
||||
def self.down
|
||||
raise ActiveRecord::IrreversibleMigration
|
||||
end
|
||||
end
|
Binary file not shown.
|
@ -9,7 +9,7 @@
|
|||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20091021024908) do
|
||||
ActiveRecord::Schema.define(:version => 20100101192755) do
|
||||
|
||||
create_table "pages", :force => true do |t|
|
||||
t.datetime "created_at", :null => false
|
||||
|
@ -25,7 +25,7 @@ ActiveRecord::Schema.define(:version => 20091021024908) do
|
|||
t.datetime "updated_at", :null => false
|
||||
t.datetime "revised_at", :null => false
|
||||
t.integer "page_id", :default => 0, :null => false
|
||||
t.text "content", :limit => 16777215
|
||||
t.text "content", :limit => 16777215, :default => "", :null => false
|
||||
t.string "author", :limit => 60
|
||||
t.string "ip", :limit => 60
|
||||
end
|
||||
|
@ -52,7 +52,7 @@ ActiveRecord::Schema.define(:version => 20091021024908) do
|
|||
t.string "name", :limit => 60, :default => "", :null => false
|
||||
t.string "address", :limit => 60, :default => "", :null => false
|
||||
t.string "password", :limit => 60
|
||||
t.text "additional_style"
|
||||
t.text "additional_style", :limit => 255
|
||||
t.integer "allow_uploads", :default => 1
|
||||
t.integer "published", :default => 0
|
||||
t.integer "count_pages", :default => 0
|
||||
|
|
Loading…
Reference in a new issue