Dashboard/db/migrate/20240104174458_create_dashboard_ells.rb

10 lines
211 B
Ruby

class CreateDashboardElls < ActiveRecord::Migration[7.1]
def change
create_table :dashboard_ells do |t|
t.string :designation
t.string :slug, unique: true
t.timestamps
end
end
end