root/db/migrate/001_create_galleries.rb @ 7

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

Version one -> initial work from the laptop.

Line 
1class CreateGalleries < ActiveRecord::Migration
2  def self.up
3    create_table :galleries do |t|
4              t.string :sTitle
5              t.text :tDescription
6              t.string :sType
7             
8            t.references :engineering
9            t.references :artwork
10      t.timestamps
11    end
12  end
13
14  def self.down
15    drop_table :galleries
16  end
17end
Note: See TracBrowser for help on using the browser.