Mercurial > hg > soundsoftware-site
view .svn/pristine/d9/d9f90dc7d55a0df3da8624b05aded4dcb90a0add.svn-base @ 1017:63f8c4f2cf67 bibplugin_bibtex_display
Shows the publication list as IEEE formatted entries; Adds 2 links, one for the publication details and another for to show the publication details as bibtex.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 12 Nov 2012 20:16:35 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
class CreateWikis < ActiveRecord::Migration def self.up create_table :wikis do |t| t.column :project_id, :integer, :null => false t.column :start_page, :string, :limit => 255, :null => false t.column :status, :integer, :default => 1, :null => false end add_index :wikis, :project_id, :name => :wikis_project_id end def self.down drop_table :wikis end end