Skip to content

Latest commit

 

History

History
68 lines (43 loc) · 1.62 KB

File metadata and controls

68 lines (43 loc) · 1.62 KB

Building with active records

In this project we created the model part of our rails webpage using active records commands.

Code execution view:

screenshot

Built With

  • Ruby on Rails
  • VsCode
  • Active Records

Getting Started

To get a local copy up and running follow these simple example steps:

  • Clone this repository into your local machine.
  • Run the main file by typing this in your command line:
  $ rails console
  $ u = User.new(username: 'Admin', email: 'admin@admin.com', password: '123456') #This is to create a User
  $ p = Post.new(title:'new title', body: 'New body', user_id: 1) #This is to create a post by a certain user
  $ c = Comment.new(body: 'New body', user_id: 1,  post_id: 1) #This is to create a comment by the user
  $ u.save
  $ p.save
  $ c.save
  $ u #To check the user content
  $ p #To check the post content
  $ c #To check the comment content

Validators

  • Rubocop
  • Stickler

Authors

👤 Elias Castañeda

👤 Abdulaziz Ali

🤝 Contributing

Contributions, issues and feature requests are welcome!

Feel free to check the issues page.

Show your support

Give a ⭐️ if you like this project!

📝 License

This project is MIT licensed.