Sha256: c09f36b3267a7672c426c86a90e5fe3b81e1af3c79a383ed410a2b3c01531fe5
Contents?: true
Size: 1.21 KB
Versions: 8
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true # # ronin-db-activerecord - ActiveRecord backend for the Ronin Database. # # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com) # # This file is part of ronin-db-activerecord. # # ronin-db-activerecord is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published # by the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # ronin-db-activerecord is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with ronin-db-activerecord. If not, see <https://www.gnu.org/licenses/>. # # # Creates the `ronin_ports` table. # class CreateRoninPortsTable < ActiveRecord::Migration[7.0] def change create_table :ronin_ports, if_not_exists: true do |t| t.string :protocol, length: 4, null: false t.integer :number, null: false t.index [:protocol, :number], unique: true end end end
Version data entries
8 entries across 8 versions & 1 rubygems