Sha256: 37e33983558f2a708fe9e91bda3aa6ce4f4161810bd0705c747a89a7c51929b8
Contents?: true
Size: 363 Bytes
Versions: 154
Compression:
Stored size: 363 Bytes
Contents
class AddImportedCreds < ActiveRecord::Migration def self.up 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 def self.down drop_table :imported_creds end end
Version data entries
154 entries across 154 versions & 1 rubygems