Initial Commit

This commit is contained in:
hannah.dagemark 2025-05-06 11:00:42 +02:00
commit eacb6f444a
109 changed files with 2842 additions and 0 deletions

View file

@ -0,0 +1,10 @@
class CreateNotes < ActiveRecord::Migration[8.0]
def change
create_table :notes do |t|
t.string :title
t.text :body
t.timestamps
end
end
end