Sha256: ff944eba92d8fe0eec42653f9b5938fb05df12b0d0a0ff9960c84735d93a82dd
Contents?: true
Size: 444 Bytes
Versions: 30
Compression:
Stored size: 444 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 Integer :last_updated end end down do drop_table(:systems) end end
Version data entries
30 entries across 30 versions & 1 rubygems