Skip to content

Instantly share code, notes, and snippets.

@GAierken
Last active February 3, 2020 16:51
Show Gist options
  • Save GAierken/ebb24404757f55e425ccb958cd9ade9a to your computer and use it in GitHub Desktop.
Save GAierken/ebb24404757f55e425ccb958cd9ade9a to your computer and use it in GitHub Desktop.
self referential relationship
class CreateUsers < ActiveRecord::Migration[6.0]
def change
create_table :users do |t|
t.string :password_digest
t.string :username
t.string :address
t.boolean :board_certified
t.timestamps
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment