Sha256: 6e6c05b2a943b3d4539b59b7862b0b4afdc19bb5f855673fe98c6bf82d698ce2
Contents?: true
Size: 533 Bytes
Versions: 23
Compression:
Stored size: 533 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 Integer :speed Time :updated_at Boolean :deleted # TODO: GIST Index on the position end end down do drop_table(:units) end end
Version data entries
23 entries across 23 versions & 1 rubygems