vedia/db/migrate/20250321213011_create_votes.rb

11 lines
244 B
Ruby

class CreateVotes < ActiveRecord::Migration[7.2]
def change
create_table :votes do |t|
t.string :secure_id
t.string :title
t.text :description
t.datetime :expire_on
t.timestamps null: false
end
end
end