Skip to content

Instantly share code, notes, and snippets.

View JudeQuintana's full-sized avatar
💥

Jude Quintana JudeQuintana

💥
View GitHub Profile
class CreateBirds < ActiveRecord::Migration
def change
create_table :comments do |t|
t.string :location
t.belongs_to :birdable, polymorphic: true
t.timestamps
end
end
end