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

Revision 10, 287 bytes (checked in by falcon, 17 years ago)

Final styling tweaks, ordering, misc cleanup.

RevLine 
[1]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
[10]7              t.integer :iOrder
[1]8      t.timestamps
9    end
10  end
11
12  def self.down
13    drop_table :galleries
14  end
15end
Note: See TracBrowser for help on using the browser.