I have added the performance model, controller, route and seed data, now I am working on the actual visual aspects of the page
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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
|
||||
Reference in New Issue
Block a user