Add: image database table, image test site, image upload support

This commit is contained in:
hannah.dagemark 2025-05-07 10:59:10 +02:00 committed by Hannah Dagemark
commit 982b72494c
13 changed files with 207 additions and 1 deletions

View file

@ -0,0 +1,9 @@
class CreateImages < ActiveRecord::Migration[8.0]
def change
create_table :images do |t|
t.string :title
t.timestamps
end
end
end