- new design
- with normalize.css and skeleton.css
This commit is contained in:
parent
084a1a2b8c
commit
720aa57810
49 changed files with 2567 additions and 357 deletions
|
@ -15,7 +15,7 @@ class CreateProjectsTable extends Migration
|
|||
{
|
||||
Schema::create('projects', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('label', 20);
|
||||
$table->string('label', 50);
|
||||
$table->string('name', 255);
|
||||
$table->string('description', 255)->nullable();
|
||||
$table->timestamps();
|
||||
|
|
|
@ -30,6 +30,7 @@ class CreateDocumentReferencesTable extends Migration
|
|||
["IsCitedBy", "Cites", "IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues", "HasMetadata", "IsMetadataFor","IsNewVersionOf", "IsPreviousVersionOf", "IsPartOf", "HasPart", "IsReferencedBy", "References", "IsDocumentedBy", "Documents", "IsCompiledBy", "Compiles", "IsVariantFormOf", "IsOriginalFormOf", "IsIdenticalTo", "IsReviewedBy", "Reviews", "IsDerivedFrom", "IsSourceOf"]
|
||||
);
|
||||
$table->string('value', 255);
|
||||
$table->string('label', 50);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue