copy migrations to default directory instead of trying to make it more easy to use
This commit is contained in:
parent
841cdad010
commit
a27dda62e0
2 changed files with 24 additions and 3 deletions
|
|
@ -0,0 +1,24 @@
|
|||
# This migration comes from foodsoft_wiki_engine (originally 20090325175756)
|
||||
class CreatePages < ActiveRecord::Migration
|
||||
def self.up
|
||||
create_table :pages do |t|
|
||||
t.string :title
|
||||
t.text :body
|
||||
t.string :permalink
|
||||
t.integer :lock_version, :default => 0
|
||||
t.integer :updated_by
|
||||
t.integer :redirect
|
||||
t.integer :parent_id
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
add_index :pages, :title
|
||||
add_index :pages, :permalink
|
||||
Page.create_versioned_table # Automaticly creates pages_versions table
|
||||
end
|
||||
|
||||
def self.down
|
||||
drop_table :pages
|
||||
Page.drop_versioned_table
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue