Wiki: history

This commit is contained in:
Valery Sizov 2012-02-19 21:52:05 +02:00
parent b565cd1972
commit 85974948e7
7 changed files with 41 additions and 4 deletions

View file

@ -0,0 +1,6 @@
class AddUserToWiki < ActiveRecord::Migration
def change
add_column :wikis, :user_id, :integer
end
end

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20120219140810) do
ActiveRecord::Schema.define(:version => 20120219193300) do
create_table "issues", :force => true do |t|
t.string "title"
@ -166,6 +166,7 @@ ActiveRecord::Schema.define(:version => 20120219140810) do
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "slug"
t.integer "user_id"
end
end