Sha256: a71f6036eca8b8d4e5d11169fac8060b48771df096c477024f7083d28f970f0c
Contents?: true
Size: 481 Bytes
Versions: 39
Compression:
Stored size: 481 Bytes
Contents
class CreatePandaCmsVisits < ActiveRecord::Migration[7.1] def change create_table :panda_cms_visits, id: :uuid do |t| t.string :ip_address, null: true t.string :user_agent, null: true t.references :panda_cms_page, null: true, foreign_key: true, type: :uuid t.references :panda_cms_redirect, null: true, foreign_key: true, type: :uuid t.references :panda_cms_user, null: true, foreign_key: true, type: :uuid t.timestamps end end end
Version data entries
39 entries across 39 versions & 1 rubygems