thirteen-tien-len/db/migrate/20230929144450_create_doodads.rb
2023-09-29 17:59:13 +00:00

12 lines
225 B
Ruby

class CreateDoodads < ActiveRecord::Migration[5.2]
def change
create_table :doodads do |t|
t.text :body
t.belongs_to :user, foreign_key: true
t.boolean :is_public
t.timestamps
end
end
end