ashirahattia/cs169-pgm

View on GitHub
db/migrate/20161020033138_create_projects.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateProjects < ActiveRecord::Migration
  def change
    create_table :projects do |t|
      t.string :project_name

      t.timestamps null: false
    end
  end
end