Emilias-Site/db/migrate/20250506085403_create_notes.rb
2025-05-07 11:23:41 +02:00

10 lines
172 B
Ruby

class CreateNotes < ActiveRecord::Migration[8.0]
def change
create_table :notes do |t|
t.string :title
t.text :body
t.timestamps
end
end
end