12 lines
212 B
Ruby
12 lines
212 B
Ruby
class CreateLocalNetworks < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :local_networks do |t|
|
|
t.string :name
|
|
t.string :subnet
|
|
t.string :tld
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|