al13ntown/db/migrate/20260824063536_create_profiles.rb
2026-08-24 20:12:41 +00:00

12 lines
227 B
Ruby

class CreateProfiles < ActiveRecord::Migration[8.1]
def change
create_table :profiles do |t|
t.string :name
t.string :age
t.string :pronouns
t.text :interests
t.timestamps
end
end
end