snippets are ready

This commit is contained in:
gitlabhq 2011-10-17 00:07:10 +03:00
parent 526ad466c8
commit 9265de3d25
28 changed files with 366 additions and 8 deletions

View file

@ -0,0 +1,6 @@
class AddFileNameToSnippets < ActiveRecord::Migration
def change
add_column :snippets, :file_name, :string
remove_column :snippets, :content_type
end
end