blob: aa7c1ab12919cc404bffe5296a91747ccb2054ea (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | class CreateBusinessCalendars < ActiveRecord::Migration
  def change
    create_table :business_calendars do |t|
      t.string :name
      t.string :short_name
      t.string :color
      t.daterange :date_ranges, array: true
      t.date :dates, array: true
      t.belongs_to :organisation, index: true
      t.timestamps null: false
    end
  end
end
 |