Dashboard/db/migrate/20240104183934_create_dashboard_speds.rb
2024-01-04 20:15:33 -08:00

10 lines
199 B
Ruby

class CreateDashboardSpeds < ActiveRecord::Migration[7.1]
def change
create_table :dashboard_speds do |t|
t.string :designation
t.string :slug
t.timestamps
end
end
end