mirror of
https://github.com/Neetpone/foalfetch.git
synced 2025-02-08 18:06:43 +01:00
9 lines
204 B
Ruby
9 lines
204 B
Ruby
|
class CreateVisitCounts < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
create_table :visit_counts do |t|
|
||
|
t.date :date, null: false
|
||
|
t.integer :count, null: false, default: 0
|
||
|
end
|
||
|
end
|
||
|
end
|