Sha256: bb8da98a63411966fe7ae579f5ca8709301d53b344afd708d6b45efc4b2490fe
Contents?: true
Size: 458 Bytes
Versions: 44
Compression:
Stored size: 458 Bytes
Contents
class AddCredsTable < ActiveRecord::Migration def self.up create_table :creds do |t| t.integer :service_id, :null => false t.timestamps null: false t.string :user, :limit => 2048 t.string :pass, :limit => 4096 t.boolean :active, :default => true t.string :proof, :limit => 4096 t.string :ptype, :limit => 16 t.integer :source_id t.string :source_type end end def self.down drop_table :creds end end
Version data entries
44 entries across 44 versions & 1 rubygems