12 lines
227 B
Ruby
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
|