Cómo agregar columnas a rieles de tabla

Ejemplos de código

6
0

cómo agregar columnas a rieles de tabla


rails g migration add_description_to_users description:string
#'g' means generate, the 'add' in 'add_description_to_users' tells
#Rails you want to add a column, the 'description' is the new column name,
#and the 'users' is the table you want to add it to, must be plural. 
#After you've checked your migration to make sure its what you want...
rails db:migrate

Páginas relacionadas

Páginas de ejemplo relacionadas

En otros idiomas

Esta página está en otros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................

Popular en esta categoría

Páginas populares con ejemplos en la categoría