foodsoft/plugins/wiki/db/migrate/20090325175756_create_pages.rb

24 lines
537 B
Ruby
Raw Normal View History

class CreatePages < ActiveRecord::Migration[4.2]
def self.up
create_table :pages do |t|
t.string :title
t.text :body
t.string :permalink
t.integer :lock_version, :default => 0
2009-05-15 17:32:45 +02:00
t.integer :updated_by
t.integer :redirect
t.integer :parent_id
t.timestamps
end
2009-08-15 17:36:13 +02:00
add_index :pages, :title
add_index :pages, :permalink
2009-05-15 17:32:45 +02:00
Page.create_versioned_table # Automaticly creates pages_versions table
end
def self.down
drop_table :pages
2009-05-15 17:32:45 +02:00
Page.drop_versioned_table
end
end