summaryrefslogtreecommitdiff
blob: febc09a684c204b1ca1c5d67fb60288759e2b148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateProjects < ActiveRecord::Migration
  def self.up
    create_table :projects do |t|
      t.column :name, :string
      t.column :longname, :string
      t.column :last_updated, :date
      t.column :description, :text
    end
  end

  def self.down
    drop_table :projects
  end
end