Skip to content

Instantly share code, notes, and snippets.

@thecodeduchess
thecodeduchess / Rake Database.md
Created February 24, 2018 00:52 — forked from stevenyap/Rake Database.md
List of rake commands to manage database

Create database

rake db:create

Create database table

This will creates a migration file in /db/migrate without table definition.

rails g migration create_<TABLE>