i want to add the "available time" when the user establish a vote . how to implement?
For example i set up a vote ,and it is available to vote by 2012.1.1.In addition ,the vote's "available time" range from one day to one year.
i want to add the "available time" when the user establish a vote . how to implement?
For example i set up a vote ,and it is available to vote by 2012.1.1.In addition ,the vote's "available time" range from one day to one year.
Copyright © 2021 Jogjafile Inc.
add a date column like "expires_at" and then you run a custom validation like:
Solution A*
if you have one single table called
votings
:expires_at
is a Date columnNow your model looks like (voting.rb):
Now in your controller:
Solution B
If you have a 2-Table approach like:
Table Votings:
Table Votes:
You need two models:
voting.rb
votes.rb
Your Controller:
Creating a new Voting: