Slide 1

Slide 1 text

COMMANDBOX MIGRATIONS

Slide 2

Slide 2 text

WHAT THIS TALK is ▸ An introduction to qb's SchemaBuilder ▸ Co-locating your app's database structure in your app ▸ How to make changes to your database schema from CommandBox

Slide 3

Slide 3 text

ABOUT ME ERIC PETERSON ! Utah " Ortus # ForgeBox, ColdBox Elixir $ Prolific Module Author % 1 wife, 2 kids (1 on the way)

Slide 4

Slide 4 text

WHAT ARE database migrations?

Slide 5

Slide 5 text

WHAT ARE database migrations? ▸ Changes to your application's database schema ▸ Describes how to apply the change and how to rollback the change ▸ Ran up and down in order

Slide 6

Slide 6 text

WHAT DOES A migration FILE LOOK LIKE?

Slide 7

Slide 7 text

component { function up() { // logic to migrate up goes here } function down() { // logic to roll back goes here } }

Slide 8

Slide 8 text

WHY Database Migrations?

Slide 9

Slide 9 text

WHY Database Migrations? ▸ Co-located inside your app's codebase ▸ Apply schema changes in order ▸ Able to bring up new instances / databases on demand

Slide 10

Slide 10 text

WHY CommandBox?

Slide 11

Slide 11 text

WHY CommandBox? ▸ No worries about exposing access to your database from the web ▸ Scriptable — can run as part of your deploy pipline ▸ Scaffold new migrations with a single command

Slide 12

Slide 12 text

SIDE NOTE: COMMANDBOX-MIGRATIONS IS BUILT OFF OF CFMIGRATIONS

Slide 13

Slide 13 text

CFMIGRATIONS CAN BE PULLED IN YOUR APP TO RUN MIGRATIONS WITHOUT COMMANDBOX (USEFUL FOR INTEGRATION TESTING)

Slide 14

Slide 14 text

CONVENTIONS ▸ Migrations are located inside resources/database/migrations ▸ Migration file names start with the timestamp they were created (2017_09_03_043150_create_users_table.cfc)

Slide 15

Slide 15 text

CONFIGURATION

Slide 16

Slide 16 text

CONFIGURATION Contained within box.json { "cfmigrations": { "connectionInfo": { "class": "org.gjt.mm.mysql.Driver", "connectionString": "jdbc:mysql://localhost:3306/commandbox-migrations-testing", "username": "root", "password": "root" }, "defaultGrammar": "MySQLGrammar" } }

Slide 17

Slide 17 text

DON'T DO IT THIS WAY!!

Slide 18

Slide 18 text

USE ENVIRONMENT VARIABLES

Slide 19

Slide 19 text

{ "cfmigrations": { "connectionInfo": { "class": "${DB_CLASS}", "connectionString": "${DB_CONNECTIONSTRING}", "username": "${DB_USER}", "password": "${DB_PASSWORD}" }, "defaultGrammar": "MySQLGrammar" } }

Slide 20

Slide 20 text

WHAT ABOUT LOCAL DEV?

Slide 21

Slide 21 text

COMMANDBOX-DOTENV

Slide 22

Slide 22 text

.ENV FILE # .env DB_CLASS=org.gjt.mm.mysql.Driver DB_CONNECTIONSTRING=jdbc:mysql://localhost:3306/commandbox-migrations-testing DB_USER=root DB_PASSWORD=root

Slide 23

Slide 23 text

AND ADD IT TO YOUR .GITIGNORE

Slide 24

Slide 24 text

BUT THEN INCLUDE A .ENV.EXAMPLE FILE WITH THE VALUES BLANK THAT isn't IGNORED

Slide 25

Slide 25 text

# .env.example DB_CLASS= DB_CONNECTIONSTRING= DB_USER= DB_PASSWORD=

Slide 26

Slide 26 text

THIS SIGNALS TO OTHER TEAM MEMBERS WHICH ENVIRONMENT VARIABLES THEY NEED FILLED OUT.

Slide 27

Slide 27 text

ONE CAVEAT: COMMANDBOX MUST BE LOADED (OR RELOADED) IN THE DIRECTORY WITH YOUR .ENV FILE

Slide 28

Slide 28 text

SCHEMABUILDER PART OF qb

Slide 29

Slide 29 text

SCHEMABUILDER ▸ Is to database structure what QueryBuilder is to queries ▸ Fluent, expressive syntax for describing tables, columns, and constraints ▸ Bridges the many database idiosyncrasies in this area.

Slide 30

Slide 30 text

SCHEMABUILDER ▸ Not required to use for commandbox-migrations ▸ Also can be used outside of commandbox-migrations ▸ Comes bundled and configured for use because it makes life easier

Slide 31

Slide 31 text

component { function up( schema, query ) { // An pre-configured instance // of `SchemaBuilder` and `QueryBuilder` // are passed to each migration function } function down( schema, query ) { // feel free to ignore them // if they aren't your thing } }

Slide 32

Slide 32 text

SCHEMABUILDER API

Slide 33

Slide 33 text

CREATE schema.create( "users", function( table ) { table.increments( "id" ); table.string( "email" ); table.string( "password" ); table.timestamp( "created_date" ); table.timestamp( "modified_date" ); table.timestamp( "last_logged_in" ).nullable(); } ); ▸ Create a named table ▸ Define the columns, modifiers, and indexes inside the callback

Slide 34

Slide 34 text

COLUMNS table.string( "email" ); table.integer( "age", 3 ); ▸ Defines the column type, name, and attributes ▸ Can be used in create or alter method ▸ Columns are NOT NULL by default

Slide 35

Slide 35 text

COLUMNS COLUMNS bigIncrements bigInteger bit boolean char date datetime decimal enum float increments integer json longText mediumIncrements mediumInteger mediumText morphs nullableMorphs raw smallIncrements smallInteger string text time timestamp tinyIncrements tinyInteger unsignedBigInteger unsignedInteger unsignedMediumInteger unsignedSmallInteger unsignedTinyInteger uuid

Slide 36

Slide 36 text

COLUMN MODIFIERS table.integer( "age" ).nullable(); table.boolean( "is_active" ).default( false ); ▸ Can be called on any column ▸ default, nullable, unsigned, comment

Slide 37

Slide 37 text

COLUMN INDEXES table.string( "id" ).primaryKey(); table.string( "username" ).unique(); table.string( "country_id" ).references( "id" ).on( "countries" ); ▸ Add indexes on individual columns ▸ Available indexes are: primaryKey, unique, references (foreign key)

Slide 38

Slide 38 text

TABLE INDEXES table.primaryKey( [ "post_id", "tag_id" ] ); table.index( "created_date" ); ▸ Add indexes on individual or multiple columns ▸ Available indexes are: index, primaryKey, unique, references (foreign key)

Slide 39

Slide 39 text

ALTER schema.alter( "users", function( table ) { table.addColumn( table.boolean( "is_active" ) ); table.modifyColumn( "age", table.integer( "age", 3 ) ); table.renameColumn( "name", table.string( "username" ) ); table.dropColumn( "last_logged_in" ); table.addConstraint( table.unique( "username" ) ); table.dropConstraint( "full_constraint_name" ); table.dropConstraint( table.foreignKey( "country_id" ) ); table.renameConstraint( "unq_users_first_name_last_name", "unq_users_full_name" ); } ); ▸ Alter methods take the same column definition as create

Slide 40

Slide 40 text

DROP schema.drop( "user_logins" ); schema.dropIfExists( "user_profiles" ); ▸ Drop a table ▸ Doesn't disable any constraints first ▸ (But that's why migrations are ran in order)

Slide 41

Slide 41 text

DEMO

Slide 42

Slide 42 text

Database Support MSSQLGrammar, MySQLGrammar, OracleGrammar, PostgresGrammar (We would love your help adding more.)

Slide 43

Slide 43 text

BONUS

Slide 44

Slide 44 text

COMMANDBOX-GITHOOKS { "githooks": { "postCheckout": "migrate up" } }

Slide 45

Slide 45 text

THANKS! commandbox-migrations commandbox-dotenv cfmigrations qb Twitter: (_elpete) · ForgeBox: (elpete) · CFML Slack