merge from develop

This commit is contained in:
2022-09-23 10:09:51 +08:00
3 changed files with 438 additions and 392 deletions

View File

@@ -0,0 +1,13 @@
class CreateTimeableVisitRecords < ActiveRecord::Migration[5.2]
def change
create_table :timeable_visit_records do |t|
t.string :time
t.references :project
t.integer :visits, default: 0
t.timestamps
end
add_index :timeable_visit_records, :time
end
end