hicknhack-software/rails-disco

View on GitHub
active_event/db/migrate/00_create_domain_events.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateDomainEvents < ActiveRecord::Migration
  def change
    create_table :domain_events do |t|
      t.string :event
      t.text :data
      t.datetime :created_at
    end
  end
end