This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
tuxbliki/schema/migrations/011_wiki_word_migration.rb

14 lines
293 B
Ruby
Raw Normal View History

2008-06-27 00:13:15 -04:00
class WikiWordMigration < ActiveRecord::Migration
def self.up
create_table :wiki_words do |t|
t.integer :source_id, :destination_id
end
add_index :wiki_words, :source_id
add_index :wiki_words, :destination_id
end
def self.down
drop_table :wiki_words
end
end