summaryrefslogtreecommitdiff
path: root/db/migrate/20200121192942_create_geo_events.rb
blob: 6dbe131051f06268b6dc23721918090ec013340b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class CreateGeoEvents < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    create_table :geo_events do |t|
      t.string :replicable_name, limit: 255, null: false
      t.string :event_name, limit: 255, null: false
      t.jsonb :payload, default: {}, null: false
      t.datetime_with_timezone :created_at, null: false
    end
  end
end