20151215110439_create_external_credentials.rb 242 B

12345678910
  1. class CreateExternalCredentials < ActiveRecord::Migration
  2. def change
  3. create_table :external_credentials do |t|
  4. t.string :name
  5. t.string :credentials, limit: 2500, null: false
  6. t.timestamps null: false
  7. end
  8. end
  9. end