Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/db/migrate/002_create_publications.rb @ 783:b153713dc4fd feature_14
Fixes the default status of the my_projects fieldset in the projects index view.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 18 Nov 2011 16:04:59 +0000 |
parents | cd3158bf28b5 |
children |
line wrap: on
line source
class CreatePublications < ActiveRecord::Migration def self.up create_table :publications do |t| t.column :title, :string t.column :reviewed, :boolean, :default => false end end def self.down drop_table :publications end end