andela/eventx

View on GitHub
db/migrate/20150804222327_create_event_templates.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateEventTemplates < ActiveRecord::Migration
  def change
    create_table :event_templates do |t|
      t.string :name
      t.string :image

      t.timestamps null: false
    end
  end
end