wiki base sceleton
This commit is contained in:
parent
df27ec29f3
commit
eacea15a21
20 changed files with 432 additions and 0 deletions
11
db/migrate/20120216215008_create_wikis.rb
Normal file
11
db/migrate/20120216215008_create_wikis.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue