crowdAI/crowdai

View on GitHub
doc/technical/archived_migrations/20170915095659_create_mandrill_messages.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateMandrillMessages < ActiveRecord::Migration[5.1]
  def change
    create_table :mandrill_messages do |t|
      t.jsonb :res
      t.jsonb :message
      t.jsonb :meta

      t.timestamps
    end
  end
end