gitlabhq/db/migrate/20120216215008_create_wikis.rb

12 lines
198 B
Ruby
Raw Normal View History

2012-02-19 15:35:31 +01:00
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