Sha256: 321c2545ded6d92ecdabfaf43faca9916fd46edbb0d9080439f473567f5356b4
Contents?: true
Size: 489 Bytes
Versions: 9
Compression:
Stored size: 489 Bytes
Contents
# frozen_string_literal: true Sequel.migration do up do create_table(:units) do String :id, primary_key: true column :position, :geography, null: false Float :altitude, default: 0 String :type String :name, null: true String :pilot, null: true String :group, null: true Integer :coalition Integer :heading Time :updated_at # TODO: GIST Index on the position end end down do drop_table(:units) end end
Version data entries
9 entries across 9 versions & 1 rubygems