Draiken/opinio

View on GitHub
lib/generators/opinio/install/templates/migrations/create_model.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Create<%= table_name.camelize %> < ActiveRecord::Migration
  def self.up
    create_table :<%= table_name %> do |t|
      t.opinio

      t.timestamps
    end
  end

  def self.down
    drop_table :<%= table_name %>
  end
end