Class: ActsAsViewableMigration

Inherits:
Object
  • Object
show all
Defined in:
lib/generators/templates/view_migration.rb

Class Method Summary collapse

Class Method Details

.downObject



10
11
12
# File 'lib/generators/templates/view_migration.rb', line 10

def self.down
  drop_table :views
end

.upObject



2
3
4
5
6
7
8
# File 'lib/generators/templates/view_migration.rb', line 2

def self.up
  create_table :views, force: true do |t|
    t.references :viewable, polymorphic: true, null: false
    t.references :viewer, polymorphic: true, null: false
    t.timestamps
  end
end