2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/db/migrate/20220628031850_create_sidebar_section_links.rb

15 lines
452 B
Ruby

# frozen_string_literal: true
class CreateSidebarSectionLinks < ActiveRecord::Migration[7.0]
def change
create_table :sidebar_section_links do |t|
t.integer :user_id, null: false
t.integer :linkable_id, null: false
t.string :linkable_type, null: false
t.timestamps
end
add_index :sidebar_section_links, [:user_id, :linkable_type, :linkable_id], unique: true, name: 'idx_unique_sidebar_section_links'
end
end