Sha256: b4ba64115446bf30411a954926d512288e3c6fd15ec7c11fb859f123952e58be
Contents?: true
Size: 336 Bytes
Versions: 15
Compression:
Stored size: 336 Bytes
Contents
class CreateStats < ActiveRecord::Migration def self.up create_table :stats do |t| t.integer :process_id, :processing_time, :open_connections t.string :kind, :info t.datetime :created_at end add_index :stats, 'kind' end def self.down # remove_index :stats, 'kind' drop_table :stats end end
Version data entries
15 entries across 15 versions & 4 rubygems