aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20151023101306_create_timebands.ninoxe_engine.rb
blob: 3758fdf0986f06bfe6855ab1d42322cec5908b47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This migration comes from ninoxe_engine (originally 20151023083836)
class CreateTimebands < ActiveRecord::Migration
  def change
    create_table :timebands do |t|
      t.string   "objectid", :null => false
      t.integer  "object_version"
      t.datetime "creation_time"
      t.string   "creator_id"
      t.string :name
      t.time :start_time, null: false
      t.time :end_time, null: false

      t.timestamps
    end
  end
end