Sha256: 09735c5bc9e3ea7439746fc33e30523a55749916bf8da259d17aa7606e274821
Contents?: true
Size: 485 Bytes
Versions: 14
Compression:
Stored size: 485 Bytes
Contents
Sequel.migration do up do create_table(:systems) do primary_key :id String :name, null: false, unique: true String :logical_name String :orientation Integer :group_id Integer :config_id String :links, text: true String :ip String :metrics, text: true Integer :last_updated end end down do drop_table(:systems) end end
Version data entries
14 entries across 14 versions & 1 rubygems