Dashboard/db/migrate/20231223040511_create_dashboard_examples.rb

10 lines
196 B
Ruby

class CreateDashboardExamples < ActiveRecord::Migration[7.1]
def change
create_table :dashboard_examples do |t|
t.string :text
t.text :body
t.timestamps
end
end
end