Class: CreateCustomQueryTable

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

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
# File 'lib/generators/export_manager/templates/create_custom_query_table.rb', line 2

def change
  create_table :export_custom_query do |t|
    t.string :name
    t.text :model
    t.text :query

    t.timestamps
  end
end