You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classExampleMigration < ActiveRecord::Migration[6.0]defchangecreate_table:distributorsdo |t|
t.string:zipcodeendreversibledo |dir|
# how to changedir.updoexecute<<-SQL ALTER TABLE distributors ADD CONSTRAINT zipchk CHECK (char_length(zipcode) = 5) NO INHERIT; SQLend# how to reversedir.downdoexecute<<-SQL ALTER TABLE distributors DROP CONSTRAINT zipchk SQLendendadd_column:users,:home_page_url,:stringrename_column:users,:email,:email_addressendend
Experience
add_reference :products, :user will add user_id in products table