Class: CreateWillFilterFilters

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/will_filter/templates/create_will_filter_filters.rb

Overview

– Copyright © 2017 Michael Berkovich, [email protected]

__    __  ____  _      _          _____  ____  _     ______    ___  ____

| |__| || || | | | | || || | | | / _]| \ | | | | | | | | | | | __| | | | | | | / [_ | D ) | | | | | | | |_ | |_ | |_ | | | |__|| |_|| _]| / | ‘ ’ | | | | || | | _] | | | | | | | [_ | \

\      /  |  | |     ||     |    |  |    |  | |     | |  |  |     ||  .  \
 \_/\_/  |____||_____||_____|    |__|   |____||_____| |__|  |_____||__|\_|

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++

Instance Method Summary collapse

Instance Method Details

#changeObject



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/generators/will_filter/templates/create_will_filter_filters.rb', line 34

def change
  create_table :will_filter_filters do |t|
    t.string      :type
    t.string      :name
    t.text        :data
    t.integer     :user_id
    t.integer     :project_id
    t.string      :model_class_name
    
    t.timestamps
  end
  
  add_index :will_filter_filters, [:user_id]
  add_index :will_filter_filters, [:project_id]
end