This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
|
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
|