jdruk/mycroft-for-us

View on GitHub
app/db/migrate/20190306154233_create_plans.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreatePlans < ActiveRecord::Migration[5.2]
  def change
    create_table :plans do |t|
      t.integer :velocity_max_upload, null: false
      t.integer :velocity_max_download, null: false

      t.timestamps
    end
  end
end