20160419085840_create_certificates.rb 213 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 class CreateCertificates < ActiveRecord::Migration def change create_table :certificates do |t| t.text :key t.text :cert t.boolean :active t.timestamps null: false end end end