Sha256: f7d053dc239a7465c6e6c71386220bd07f6abee00d996ef656b0ecc15a9806e6
Contents?: true
Size: 383 Bytes
Versions: 22
Compression:
Stored size: 383 Bytes
Contents
class DropTableImportedCreds < ActiveRecord::Migration[4.2] def up drop_table :imported_creds end def down create_table :imported_creds do |t| t.integer :workspace_id, :null => false, :default => 1 t.string :user, :limit => 512 t.string :pass, :limit => 512 t.string :ptype, :limit => 16, :default => "password" end end end
Version data entries
22 entries across 22 versions & 2 rubygems