Class: CreatePrawnReportCatalogs

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/prawn_report/install/templates/20120108210141_create_prawn_report_catalogs.rb

Class Method Summary collapse

Class Method Details

.downObject



13
14
15
# File 'lib/generators/prawn_report/install/templates/20120108210141_create_prawn_report_catalogs.rb', line 13

def self.down
  drop_table :report_templates
end

.upObject



4
5
6
7
8
9
10
11
# File 'lib/generators/prawn_report/install/templates/20120108210141_create_prawn_report_catalogs.rb', line 4

def self.up
  create_table :report_templates do |t|
    t.string :name
    t.string :report_type
    t.string :controller_name
    t.timestamps
  end  
end