10 lines
212 B
Ruby
10 lines
212 B
Ruby
class CreateRatings < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :ratings do |t|
|
|
t.belongs_to :user
|
|
t.belongs_to :candidate
|
|
t.integer :value
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|