Dashboard/db/migrate/20240104174649_create_dashboard_incomes.rb

10 lines
217 B
Ruby

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