root/db/migrate/005_create_gallery_files.rb
@
1
| Revision 1, 299 bytes (checked in by falcon, 17 years ago) |
|---|
| Rev | Line | |
|---|---|---|
| [1] | 1 | class CreateGalleryFiles < ActiveRecord::Migration |
| 2 | def self.up | |
| 3 | create_table :gallery_files do |t| | |
| 4 | t.string :sTitle | |
| 5 | t.text :sDescription | |
| 6 | t.string :filename | |
| 7 | t.references :gallery | |
| 8 | t.timestamps | |
| 9 | end | |
| 10 | end | |
| 11 | ||
| 12 | def self.down | |
| 13 | drop_table :gallery_files | |
| 14 | end | |
| 15 | end |
Note: See TracBrowser
for help on using the browser.
