vedia/db/migrate/20250321224552_create_candidates.rb

10 lines
212 B
Ruby

class CreateCandidates < ActiveRecord::Migration[7.2]
def change
create_table :candidates do |t|
t.belongs_to :vote
t.string :name
t.text :description
t.timestamps
end
end
end