Rails Generate Model With Foreign Key

Posted on by

Rails will generate a name for every foreign key starting with fkrails followed by 10 characters which are deterministically generated from the fromtable and column. There is a:name option to specify a different name if needed. Active Record only supports single column foreign keys. Feb 01, 2016  Watch how to run the Rails scaffold generator and include references to other models using the 'references' association method. Understanding Model in Ruby on Rails. Creating simple model.

By convention, Rails guesses that the column in the join table used to hold the foreign key pointing to this model is the name of this model with the suffix id added. The:foreignkey option lets you set the name of the foreign key directly.

Foreign

Rails Generate Model With Foreign Keys

There are some people who give advice to not use rails generators and create models, controllers and etc. things manually. I don’t agree with them and my advice here is to figure out deeply how they work and then make conclusion.

Rails generate foreign key

In this post I will describe the most often and useful generator - it’s a model generator. I bet if you don’t use rails generators yet this post will make you to change your work. Using Rails generators saves your time, increases performance, helps to get consistent data for your application.

Basic usage

Let’s start with simple example:

This command will generate user model with email field type of string, migration which creates users table, test for model and factory (if you have it). You are able to generate model with few fields like this:

This example will generate yet model with 3 string fields: first_name, last_name and email.

If you want to have model with different type of string pass type after field name following by : and type. Example:

The whole list of available types:

You are able to pass –option parameter to generator. It will inherit generating class from passed name to achieve STI (sing table inheritance):

This example generates model:

Interesting fact that if you generate model in some scope passing model like admin/user or Admin::User:

you will get generated model in scope app/models/admin/user.rb, defined scope app/models/admin.rb which is requred to define module. Let’s see to the content of generated module:

It means that generated table name for Admin::User starts with prefix admin_users. This feature allows to have separated namespaced models as in rails code as in db schema. Very convenient and useful feature for multimodule applications for my opinion.

Advanced usage

Sometimes you have to automatically add index for columns in your migration. It’s not a problem:

Or uniq index:

Set limit for field of integer, string, text and binary fields:

Special syntax to generate decimal field with scale and precision:

Pay attention that you have to wrap parameter price:decimal{10,2} to quotes. It’s vital and you may have incorrect behavior of generator if you don’t do it. Full explanation of this case is here.

You can combine any single curly brace option with the index options:

And the last useful feature of generators - it’s options to generate reference columns (fields which are used in rails as foreign keys):

This command will generate photos table with integer field album_id and also it will add index for this field automatically. Make sure in it by looking at generated migration:

For polymorphic reference use this syntax:

Rails Generate Model Foreign Key

Polymorphic reference with indexes:

Conclusion

Rails Generate Model With Foreign Key Examples

As you see there a lot of useful things in rails model generator which can decrease your developing time. Thank you for reading this trolling post but anyway I hope you find it useful because I didn’t find any similar post or literature which describes rails model generator fully.

PS. Foundation for this post was got from this rails description usage which is located only in sources of rails on github.

There are some people who give advice to not use rails generators and create models, controllers and etc. things manually. I don’t agree with them and my advice here is to figure out deeply how they work and then make conclusion.

Our service works in a simple way, register, select game and click 'Generate Steam Key'. Feel free to watch our video tutorial on how to generate free Steam Key. There are hundreds of scam sites that deceive users, with the promise of free Steam keys. Free steam game keys generator software.

In this post I will describe the most often and useful generator - it’s a model generator. I bet if you don’t use rails generators yet this post will make you to change your work. Using Rails generators saves your time, increases performance, helps to get consistent data for your application.

Basic usage

Let’s start with simple example:

This command will generate user model with email field type of string, migration which creates users table, test for model and factory (if you have it). You are able to generate model with few fields like this:

This example will generate yet model with 3 string fields: first_name, last_name and email.

If you want to have model with different type of string pass type after field name following by : and type. Example:

The whole list of available types:

You are able to pass –option parameter to generator. It will inherit generating class from passed name to achieve STI (sing table inheritance):

Rails Create Model With Foreign Key

This example generates model:

Interesting fact that if you generate model in some scope passing model like admin/user or Admin::User:

you will get generated model in scope app/models/admin/user.rb, defined scope app/models/admin.rb which is requred to define module. Let’s see to the content of generated module:

It means that generated table name for Admin::User starts with prefix admin_users. This feature allows to have separated namespaced models as in rails code as in db schema. Very convenient and useful feature for multimodule applications for my opinion.

Advanced usage

Sometimes you have to automatically add index for columns in your migration. It’s not a problem:

Or uniq index:

Set limit for field of integer, string, text and binary fields:

Special syntax to generate decimal field with scale and precision:

Pay attention that you have to wrap parameter price:decimal{10,2} to quotes. It’s vital and you may have incorrect behavior of generator if you don’t do it. Full explanation of this case is here.

You can combine any single curly brace option with the index options:

And the last useful feature of generators - it’s options to generate reference columns (fields which are used in rails as foreign keys):

This command will generate photos table with integer field album_id and also it will add index for this field automatically. Make sure in it by looking at generated migration:

For polymorphic reference use this syntax:

Polymorphic reference with indexes:

Conclusion

As you see there a lot of useful things in rails model generator which can decrease your developing time. Thank you for reading this trolling post but anyway I hope you find it useful because I didn’t find any similar post or literature which describes rails model generator fully.

PS. Foundation for this post was got from this rails description usage which is located only in sources of rails on github.