Class: CreateSlickrSettings
- Inherits:
-
Object
- Object
- CreateSlickrSettings
- Defined in:
- lib/generators/slickr/templates/migrations/create_slickr_settings.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
14 15 16 |
# File 'lib/generators/slickr/templates/migrations/create_slickr_settings.rb', line 14 def self.down drop_table :slickr_settings end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 |
# File 'lib/generators/slickr/templates/migrations/create_slickr_settings.rb', line 2 def self.up create_table :slickr_settings do |t| t.string :var, null: false t.text :value, null: true t.integer :thing_id, null: true t.string :thing_type, null: true, limit: 30 t. end add_index :slickr_settings, i(thing_type thing_id var), unique: true end |