app.kluk.fr/db/migrate/20250707090344_create_moods.rb
Christophe Robillard 2653930993 init
2025-08-05 16:29:05 +02:00

10 lines
182 B
Ruby

class CreateMoods < ActiveRecord::Migration[8.0]
def change
create_table :moods do |t|
t.string :mode
t.datetime :recorded_at
t.timestamps
end
end
end