Database Migrations
Database Migrations are an easy way to build and alter your database structure using cfscript and even deploy across different database engines
Last updated
Database Migrations are an easy way to build and alter your database structure using cfscript and even deploy across different database engines
Last updated
With CFWheels 2.x, you can now create, alter and populate your database via cfscript in an organized manner. Using custom CFC files, you can create an organized database schema, and move between versions easily, either programmatically, via the provided GUI, or via the CLI.
If you're new to this concept, the best way to get going is by following the [Migrator]
link in the debug footer to load the built in GUI. Naturally, you will need your application's datasource setup and ready to go to get started.
You can go to the info
tab in the navbar and you will see a Database
section, just so you can check you're running against the correct datasource. We're going to start by creating a simple template.
The Templating tab allows for creation of either a blank CFC file, or from a selection of pre-populated templates. Whilst none of these templates will provide all the information required for a complete database migration, they are a good starting point and fairly heavily commented.
As we've not setup any migrations before, the system needs to know what prefix we want to use for our migration files. Each approach - Timestamp
and Numeric
is perfectly valid, but we recommend the Timestamp
prefix if you're just starting out. Once you have a migration file, this section will disappear as it will get that info from the existing files.
For this tutorial, we're going to create the users
table. So under Create a Template
, we will select Create table
and add a description of Create User Table
.
Clicking on Create Migration File
will then create a CFC at /migrator/migrations/20170420100502_Create_User_Table.cfc
. The system will also display all messages at the bottom of the GUI whenever it does something - so for this command, we see The migration 20170420100502_Create_User_Table.cfc file was created
Next, open up the Create_User_Table.cfc
template we just created. There are two functions to any migration file: up()
and down()
.
up()
will be executed when migrating your schema forward, and down()
when you're rolling back.
The important concept to grasp is that anything which up() does, down() must undo.
Our default up()
function will look something like this. Most of it you can actually ignore, as it's just wrapped in a transaction with some error handling. The important lines to look at are:
createTable()
is the command to actually make the table: so we need to change this to users
.
t.timestamps();
creates CFWheels automatic timestamp columns of createdAt
,updatedAt
and deletedAt
.
The t.create();
is the final statement which executes the actual action.
Remember, the down()
function needs to reverse these changes. so in our down()
code block, we're going to change the dropTable('tableName');
to `dropTable('users');
Whilst we could execute this template in it's current state (we have an up function which creates, and a down function which drops) we wouldn't get much in the actual table. We can use the same migration file to add additional lines to create some columns to store things like firstname
. Here's an example of a slightly more fleshed out migration file to give you some inspiration:
As you can see, you can create multiple columns in a single call, set default values, whether to allow null values, and so on.
At this point, we can get going on actually creating this table
Make sure that multiple column names in "columnNames" are only separated with ",". Don't use spaces like ", " as that space becomes part of a column name which will cause problems.
While t = createTable(name='users');
will create a standard auto-increment numeric ID, sometimes you need to create a table which has a composite, or non standard primary key. In this example, we're setting id=false
on the createTable()
call to bypass the default behavior, then specifying our primarykeys separately via primaryKey()
:
This would be a typical setup for a join table where you have a many to many relationship. Alternatively this can be useful if you need to specify a UUID as a primarykey.
Returning to our migration GUI, we can now see some options under the Migrations tab.
Simply click the button to migrate the database to our new version. From this screen we can also roll back to previous schema versions, or even reset the database back to 0
.
Setting | Type | Default | Description |
---|---|---|---|
autoMigrateDatabase | Boolean | false | Automatically runs available migration on applicationstart. |
migratorTableName | String | migratorversions | The name of the table that stores the versions migrated. |
createMigratorTable | Boolean | true | Create the migratorversions database table. |
writeMigratorSQLFiles | Boolean | false | Writes the executed SQL to a .sql file in the /migrator/sql directory. |
migratorObjectCase | String | lower | Specifies the case of created database object. Options are 'lower', 'upper' and 'none' (which uses the given value unmodified) |
allowMigrationDown | Boolean | false (true in development mode) | Prevents 'down' migrations (rollbacks) |
The Migrator needs to run across multiple DB engines, it avoids direct use of varchar, as different adapters will need to use different column types etc. Therefore string translates to VARCHAR.
For instance, here's the mySQL variants:
biginteger = BIGINT UNSIGNED
binary = BLOB boolean = TINYINT',limit=1
date = DATE datetime = DATETIME
decimal = DECIMAL
float = FLOAT
integer = INT
string = VARCHAR',limit=255
text = TEXT
time = TIME
timestamp = TIMESTAMP
uuid = VARBINARY', limit=16
Whereas SQL Server would use:
primaryKey = "int NOT NULL IDENTITY (1, 1)
binary = IMAGE
boolean = BIT
date = DATETIME
datetime = DATETIME
decimal = DECIMAL
float = FLOAT
integer = INT
string = VARCHAR',limit=255
text = TEXT
time = DATETIME
timestamp = DATETIME
uniqueidentifier = UNIQUEIDENTIFIER
char = CHAR',limit=10