root/db/migrate/007_create_gallery_medias.rb
Revision 1, 309 bytes (checked in by falcon, 17 years ago) |
---|
Line | |
---|---|
1 | class CreateGalleryMedias < ActiveRecord::Migration |
2 | def self.up |
3 | create_table :gallery_medias do |t| |
4 | t.string :sTitle |
5 | t.text :tDescription |
6 | t.string :medianame |
7 | t.references :gallery |
8 | t.timestamps |
9 | end |
10 | end |
11 | |
12 | def self.down |
13 | drop_table :gallery_medias |
14 | end |
15 | end |
Note: See TracBrowser
for help on using the browser.