mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
Edit Item DB structure
This commit is contained in:
@@ -15,9 +15,12 @@ class CreateItemsTable extends Migration
|
||||
{
|
||||
Schema::create('items', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->integer('category_id');
|
||||
$table->integer('quantity');
|
||||
$table->string('name');
|
||||
$table->string('official_number');
|
||||
$table->string('desc');
|
||||
$table->text('metadata');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user