You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- use Framework\Database\Connection\Connection;
-
- class CreateItemsTable
- {
- public function migrate(Connection $connection)
- {
- $table = $connection->createTable('items');
- $table->id('id');
- $table->string('sku');
- $table->string('name');
- $table->text('description');
- $table->int('reorder_level')->default(0);
- $table->dateTime('created_at')->default('CURRENT_TIMESTAMP');
- $table->execute();
- }
- }
|