Sha256: b37c9c24a88d05c9de6eb3317e0d240fde447d8d10a0d8a1229198067829c436
Contents?: true
Size: 448 Bytes
Versions: 110
Compression:
Stored size: 448 Bytes
Contents
class AddCredsTable < ActiveRecord::Migration def self.up create_table :creds do |t| t.integer :service_id, :null => false t.timestamps 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
110 entries across 110 versions & 1 rubygems