root/db/migrate/001_create_galleries.rb
@
10
Revision 10, 287 bytes (checked in by falcon, 17 years ago) |
---|
Rev | Line | |
---|---|---|
[1] | 1 | class 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 | |
15 | end |
Note: See TracBrowser
for help on using the browser.