Skip to content

Instantly share code, notes, and snippets.

View hachikujimayoi11's full-sized avatar

hachikuji mayoi hachikujimayoi11

  • Lima, Peru
View GitHub Profile
@hachikujimayoi11
hachikujimayoi11 / application.html.erb
Created July 13, 2023 17:41 — forked from pazteddy/application.html.erb
Snippets of code to develop a little faster the Offix workshop
<body>
<header>
<div class="container">
<div class="header navbar">
<%=link_to image_tag("/images/logo.png"), departments_path%>
<%=form_with url: "/search", method: :get do |f|%>
<%=f.label :consulta, "Search employees: " %>
<%=f.text_field :consulta %>
<%end%>
</div>
@hachikujimayoi11
hachikujimayoi11 / cheatsheet_week3.md
Created July 12, 2023 23:46 — forked from pazteddy/cheatsheet_week3.md
Associations, callbacks and validations

Associations

Task 1. Create models and tables

rails generate model User username email role critics_count:integer
rails g model Critic title body:text user:references
rails g model Company name description:text start_date:date country cover
rails g model Game name summary:text release_date:date category:integer rating:decimal cover
rails g model Platform name category:integer