Files
old-konsultanti-next-gen/db/migrate/20210903155123_create_active_admin_comments.rb
2021-09-20 08:22:39 +02:00

17 lines
414 B
Ruby

class CreateActiveAdminComments < ActiveRecord::Migration[6.1]
def self.up
create_table :active_admin_comments do |t|
t.string :namespace
t.text :body
t.references :resource, polymorphic: true
t.references :author, polymorphic: true
t.timestamps
end
add_index :active_admin_comments, [:namespace]
end
def self.down
drop_table :active_admin_comments
end
end