Commit f476c42d authored by Nihad Abbasov's avatar Nihad Abbasov

remove content column from issues

parent f295ff84
class RemoveContentFromIssues < ActiveRecord::Migration
def up
remove_column :issues, :content
end
def down
add_column :issues, :content, :text
end
end
......@@ -11,11 +11,10 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20111101222453) do
ActiveRecord::Schema.define(:version => 20111111093150) do
create_table "issues", :force => true do |t|
t.string "title"
t.text "content"
t.integer "assignee_id"
t.integer "author_id"
t.integer "project_id"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment