mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
13 lines
328 B
Ruby
13 lines
328 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateInboxAssignmentPolicies < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :inbox_assignment_policies do |t|
|
|
t.references :inbox, null: false, index: { unique: true }
|
|
t.references :assignment_policy, null: false, index: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|