rosa-build/db/migrate/20111012065448_create_downl...

18 lines
327 B
Ruby

class CreateDownloads < ActiveRecord::Migration
def self.up
create_table :downloads do |t|
t.string :name, null: false
t.string :version
t.string :distro
t.string :platform
t.integer :counter, default: 0
t.timestamps
end
end
def self.down
drop_table :downloads
end
end