Files
wedding/db/migrate/20180324195736_create_active_admin_comments.rb
2020-05-30 09:40:57 +01:00

19 lines
449 B
Ruby

# frozen_string_literal: true
class CreateActiveAdminComments < ActiveRecord::Migration::Current
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