rosa-build/db/migrate/20110311154011_create_repos...

16 lines
302 B
Ruby

# -*- encoding : utf-8 -*-
class CreateRepositories < ActiveRecord::Migration
def self.up
create_table :repositories do |t|
t.string :name, :null => false
t.integer :platform_id, :null => false
t.timestamps
end
end
def self.down
drop_table :repositories
end
end