Class: CreateDayPlannerLog
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateDayPlannerLog
- Defined in:
- lib/day_planner/templates/migrations/create_day_planner_log.rb
Instance Method Summary collapse
Instance Method Details
#down ⇒ Object
12 13 14 |
# File 'lib/day_planner/templates/migrations/create_day_planner_log.rb', line 12 def down drop_table :day_planner_log end |
#up ⇒ Object
2 3 4 5 6 7 8 9 10 |
# File 'lib/day_planner/templates/migrations/create_day_planner_log.rb', line 2 def up create_table :day_planner_log do |t| t.string :name t.integer :interval t.datetime :datetime t.decimal :deviation, precision: 15, scale: 6 t.decimal :cumulative_deviation, precision: 15, scale: 6 end end |