11 lines
232 B
Ruby
11 lines
232 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
|
|
end
|
|
end
|
|
end
|