root/db/migrate/002_create_engineering.rb

Revision 1, 208 bytes (checked in by falcon, 17 years ago)

Version one -> initial work from the laptop.

Line 
1class CreateEngineering < ActiveRecord::Migration
2  def self.up
3    create_table :engineering do |t|
4                t.string :sTitle
5      t.timestamps
6    end
7  end
8
9  def self.down
10    drop_table :engineering
11  end
12end
Note: See TracBrowser for help on using the browser.