MAPG-101 add migrations folder structure and create first migration

This commit is contained in:
Bence Pőcze 2020-06-02 23:28:35 +02:00
parent c0c44bcbae
commit 4b2fc23129
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1 @@
<?php //empty on purpose

View File

@ -0,0 +1,6 @@
CREATE TABLE `migrations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(255) NOT NULL,
`type` enum('structure', 'data') NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4;