Changeset e78295c for database/migrations
- Timestamp:
- 10/31/21 21:28:46 (3 years ago)
- Branches:
- master
- Children:
- 4521f25
- Parents:
- a55bb54
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
database/migrations/2021_10_06_103305_create_folders_table.php
ra55bb54 re78295c 16 16 Schema::create('folders', function (Blueprint $table) { 17 17 $table->bigIncrements('id')->startingValue(1); 18 $table->string("arch_id") ->unique();18 $table->string("arch_id"); 19 19 $table->string("name"); 20 20 $table->text("note")->nullable(); … … 23 23 $table->integer("user_id")->unsigned(); 24 24 $table->integer("department_id")->unsigned(); 25 $table-> boolean("is_important")->default(false);25 $table->integer("version")->default(1); 26 26 $table->timestamps(); 27 27
Note:
See TracChangeset
for help on using the changeset viewer.