Mercurial > hg > soundsoftware-site
view .svn/pristine/e7/e7f59d38bb10065e83d125e940b355005f481782.svn-base @ 1028:b8ae7b3af25a bibplugin_bibtex_display
Fixed wrong bibtex entries type when converting to bibtex format.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 13 Nov 2012 13:33:15 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
class CreateQueries < ActiveRecord::Migration def self.up create_table :queries, :force => true do |t| t.column "project_id", :integer t.column "name", :string, :default => "", :null => false t.column "filters", :text t.column "user_id", :integer, :default => 0, :null => false t.column "is_public", :boolean, :default => false, :null => false end end def self.down drop_table :queries end end