14 lines
241 B
Ruby
14 lines
241 B
Ruby
|
|
class CreateBio < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
create_table :bios do |t|
|
||
|
|
t.string :authorname
|
||
|
|
t.string :age
|
||
|
|
t.text :pronouns
|
||
|
|
t.text :biog
|
||
|
|
t.text :interests
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|