Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/db/migrate/002_create_publications.rb @ 405:8a105a53b8f4 feature_36
Refactoring.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 13 Apr 2011 18:16:45 +0100 |
parents | ef8a9bc67e15 |
children | cd3158bf28b5 |
line wrap: on
line source
class CreatePublications < ActiveRecord::Migration def self.up create_table :publications do |t| t.column :title, :string end end def self.down drop_table :publications end end