Skip to content

Commit

Permalink
Fix the case sensitive error in the migration files
Browse files Browse the repository at this point in the history
  • Loading branch information
raulriera committed Mar 19, 2010
1 parent 511812e commit b5bfe0f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion db/migrate/20100207023548_creates_layouts_table.cfc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<cfcomponent extends="plugins.dbmigrate.migration" hint="creates layouts table">
<cfcomponent extends="plugins.dbmigrate.Migration" hint="creates layouts table">
<cffunction name="up">
<cfscript>
t = createTable('layouts');
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20100207023607_creates_snippets_table.cfc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<cfcomponent extends="plugins.dbmigrate.migration" hint="creates snippets table">
<cfcomponent extends="plugins.dbmigrate.Migration" hint="creates snippets table">
<cffunction name="up">
<cfscript>
t = createTable('snippets');
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20100207023617_creates_pages_table.cfc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<cfcomponent extends="plugins.dbmigrate.migration" hint="creates pages table">
<cfcomponent extends="plugins.dbmigrate.Migration" hint="creates pages table">
<cffunction name="up">
<cfscript>
t = createTable('pages');
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20100207023638_creates_pageparts_table.cfc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<cfcomponent extends="plugins.dbmigrate.migration" hint="creates pageparts table">
<cfcomponent extends="plugins.dbmigrate.Migration" hint="creates pageparts table">
<cffunction name="up">
<cfscript>
t = createTable('pageparts');
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20100207023657_creates_pageclasses_table.cfc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<cfcomponent extends="plugins.dbmigrate.migration" hint="creates pageclasses table">
<cfcomponent extends="plugins.dbmigrate.Migration" hint="creates pageclasses table">
<cffunction name="up">
<cfscript>
t = createTable('pageclasses');
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20100208085837_enter_default_data.cfc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<cfcomponent extends="plugins.dbmigrate.migration" hint="enter default data">
<cfcomponent extends="plugins.dbmigrate.Migration" hint="enter default data">
<cffunction name="up">
<cfscript>
// add the admin user record
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<cfcomponent extends="plugins.dbmigrate.migration" hint="creates snippet categories table">
<cfcomponent extends="plugins.dbmigrate.Migration" hint="creates snippet categories table">
<cffunction name="up">
<cfscript>
t = createTable('categories');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<cfcomponent extends="plugins.dbmigrate.migration" hint="add categoryid to snippets table">
<cfcomponent extends="plugins.dbmigrate.Migration" hint="add categoryid to snippets table">
<cffunction name="up">
<cfscript>
t = changeTable('snippets');
Expand Down

0 comments on commit b5bfe0f

Please sign in to comment.