Skip to content

Instantly share code, notes, and snippets.

@tonussi
Created October 19, 2013 02:15
Show Gist options
  • Select an option

  • Save tonussi/7050945 to your computer and use it in GitHub Desktop.

Select an option

Save tonussi/7050945 to your computer and use it in GitHub Desktop.
CriaJogo.rb
# -*- encoding : utf-8 -*-
class CriaJogo < ActiveRecord::Migration
def self.up
create_table "jogo", :force => true do |t|
t.column :ranking, :string
t.column :jogadores, :string
end
end
def self.down
drop_table "jogo"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment