15 lines
303 B
Ruby
15 lines
303 B
Ruby
# frozen_string_literal: true
|
|
class CreatePerformances < ActiveRecord::Migration[4.2]
|
|
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
|