Files
railsgoat/db/migrate/20130531182058_create_performances.rb
T
2017-12-05 18:46:21 -06:00

15 lines
298 B
Ruby

# frozen_string_literal: true
class CreatePerformances < ActiveRecord::Migration
def change
create_table :performances do |t|
t.integer :user_id
t.date :date_submitted
t.integer :score
t.string :comments
t.integer :reviewer
t.timestamps
end
end
end