Noosfero/noosfero

View on GitHub
plugins/volunteers/db/migrate/20141012005319_create_volunteers_plugin_periods.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateVolunteersPluginPeriods < ActiveRecord::Migration[5.1]
  def up
    create_table :volunteers_plugin_periods do |t|
      t.integer :owner_id
      t.string :owner_type
      t.text :name
      t.datetime :start
      t.datetime :end
      t.integer :minimum_assigments
      t.integer :maximum_assigments

      t.timestamps
    end
    add_index :volunteers_plugin_periods, [:owner_type]
    add_index :volunteers_plugin_periods, [:owner_id, :owner_type]
  end

  def down
    drop_table :volunteers_plugin_periods
  end
end