Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
Add description to user_glossaries
Browse files Browse the repository at this point in the history
  • Loading branch information
SUZUKI Miho committed Oct 3, 2012
1 parent 07dca31 commit 8d1d18a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions db/migrate/20121003071506_add_description_to_user_glossary.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddDescriptionToUserGlossary < ActiveRecord::Migration
def change
add_column :user_glossaries, :description, :string
end
end
3 changes: 2 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20120924072013) do
ActiveRecord::Schema.define(:version => 20121003071506) do

create_table "github_projects", :force => true do |t|
t.string "owner"
Expand Down Expand Up @@ -48,6 +48,7 @@
t.string "target_language", :null => false
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "description"
end

add_index "user_glossaries", ["user_id"], :name => "index_user_glossaries_on_user_id"
Expand Down

0 comments on commit 8d1d18a

Please sign in to comment.