f450070dbf
* Scaffold for Page Objekt * Using textile for rendering html * Easy wiki-links with [[wikipage]]
15 lines
239 B
Ruby
15 lines
239 B
Ruby
class CreatePages < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :pages do |t|
|
|
t.string :title
|
|
t.text :body
|
|
t.string :permalink
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :pages
|
|
end
|
|
end
|