Keine Beschreibung http://j1x-huginn.herokuapp.com

20140509170420_create_scenarios.rb 293B

    class CreateScenarios < ActiveRecord::Migration def change create_table :scenarios do |t| t.string :name, :null => false t.integer :user_id, :null => false t.timestamps end add_column :users, :scenario_count, :integer, :null => false, :default => 0 end end