fununloaded/One_Eighty_Degrees_Consulting

View on GitHub
db/migrate/20160429220743_create_prompts.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreatePrompts < ActiveRecord::Migration
  def change
    create_table :prompts do |t|
      t.string :text

      t.timestamps null: false
    end
  end
end