Sha256: e9d52c81711e12348990cb80c8c10e56fdab88f40db4c517754241f8aacb7050
Contents?: true
Size: 378 Bytes
Versions: 130
Compression:
Stored size: 378 Bytes
Contents
class DropTableImportedCreds < ActiveRecord::Migration 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
130 entries across 130 versions & 1 rubygems