eucalypt
>= 0.9.0
>= 0.9.0
  • eucalypt
  • Installation
  • CLI
    • Core
      • Init
      • Launch
      • Console
      • Test
      • Version
      • Rake
      • Help (-H)
    • Generate
      • Controller
      • Helper
      • Model
      • Scaffold
    • Destroy
      • Controller
      • Helper
      • Model
      • Scaffold
    • Blog
      • Setup
      • Article
        • List
        • Generate
        • Destroy
        • Edit
          • Urltitle
          • Datetime
    • Migration
      • Blank
      • Types
      • Create
        • Table
      • Add
        • Index
        • Column
      • Drop
        • Table
        • Index
        • Column
      • Rename
        • Table
        • Index
        • Column
      • Change
        • Column
  • Features
    • Controllers
    • Helpers
    • Views
      • Layouts
      • Partials
    • Static data
    • Core application file
    • Configuration
      • Logging
      • Asset pipeline
        • Manifest asset files
      • Initializers
      • Database
    • Manifest accessor
    • Application path helpers
    • Blog environment
      • Articles
    • Rendering static files
    • Maintenance mode
Powered by GitBook
On this page
  • Command
  • Arguments
  • Options/flags
  • Examples
  1. CLI
  2. Generate

Model

Generates a model.

Command

$ eucalypt generate model
# Alias/shortened
$ eucalypt g model
$ eucalypt g m

Arguments

  • [NAME] - The name of the model.

  • *[COLUMN:TYPE] - The columns/attributes for the model's database table, along with their types (argument can be empty).

Options/flags

  • --spec, --no-spec, (Default: True)

    Specify whether or not to generate a spec file along with the model.

  • --table, --no-table, (Default: True)

    Specify whether or not to generate a table creation migration along with the model.

Examples

  • $ eucalypt g model tweet

    Generates a new model with default options (and no columns).

  • $ eucalypt g model tweet text:string likes:integer

    Generates a new model with default options (and two columns)

  • $ eucalypt g model tweet text:string likes:integer --no-spec

    Generates a new model without a corresponding spec file (and two columns).

  • $ eucalypt g model tweet --no-table

    Generates a new model file with a corresponding spec file, but with no table creation migration.

PreviousHelperNextScaffold

Last updated 6 years ago