Sha256: 47a71f45df81908ccec8c6127e083adf79817c872688c18757c6f3878844e10a
Contents?: true
Size: 474 Bytes
Versions: 83
Compression:
Stored size: 474 Bytes
Contents
class ReworkAppstatsEntries < ActiveRecord::Migration def self.up drop_table :appstats_entries create_table :appstats_entries do |t| t.string :action t.datetime :occurred_at t.text :raw_entry t.timestamps end end def self.down drop_table :appstats_entries create_table :appstats_entries do |t| t.string :entry_type t.string :name, :null => false t.string :description t.timestamps end end end
Version data entries
83 entries across 83 versions & 1 rubygems