12 lines
198 B
Ruby
12 lines
198 B
Ruby
class CreateWikis < ActiveRecord::Migration
|
|
def change
|
|
create_table :wikis do |t|
|
|
t.string :title
|
|
t.text :content
|
|
t.integer :project_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|