20121119170638_create_services.rb 238 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 class CreateServices < ActiveRecord::Migration def change create_table :services do |t| t.string :type t.string :title t.string :token t.integer :project_id, null: false t.timestamps end end end