Project

General

Profile

Download (342 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateMedia < ActiveRecord::Migration
def self.up
create_table :media do |t|
t.string :name, :limit => 50, :default => "", :null => false
t.string :path, :limit => 100, :default => "", :null => false
t.references :operatingsystem
t.timestamps
end
end

def self.down
drop_table :media
end
end
(4-4/172)