gitlabhq/db/migrate/20111016193417_add_content_...

6 lines
164 B
Ruby

class AddContentTypeToSnippets < ActiveRecord::Migration
def change
add_column :snippets, :content_type, :string, :null => false, :default => "txt"
end
end