Project

General

Profile

Download (348 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateMedia < ActiveRecord::Migration[4.2]
def 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 null: true
end
end

def down
drop_table :media
end
end
(4-4/407)