mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
Created new entity Tag and migration to create new tables
This commit is contained in:
72
data/migrations/Version20160820191203.php
Normal file
72
data/migrations/Version20160820191203.php
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ShlinkMigrations;
|
||||||
|
|
||||||
|
use Doctrine\DBAL\Migrations\AbstractMigration;
|
||||||
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
|
use Doctrine\DBAL\Types\Type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auto-generated Migration: Please modify to your needs!
|
||||||
|
*/
|
||||||
|
class Version20160820191203 extends AbstractMigration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @param Schema $schema
|
||||||
|
*/
|
||||||
|
public function up(Schema $schema)
|
||||||
|
{
|
||||||
|
$this->createTagsTable($schema);
|
||||||
|
$this->createShortUrlsInTagsTable($schema);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function createTagsTable(Schema $schema)
|
||||||
|
{
|
||||||
|
$table = $schema->createTable('tags');
|
||||||
|
$table->addColumn('id', Type::BIGINT, [
|
||||||
|
'unsigned' => true,
|
||||||
|
'autoincrement' => true,
|
||||||
|
'notnull' => true,
|
||||||
|
]);
|
||||||
|
$table->addColumn('name', Type::STRING, [
|
||||||
|
'length' => 255,
|
||||||
|
'notnull' => true,
|
||||||
|
]);
|
||||||
|
$table->addUniqueIndex(['name']);
|
||||||
|
|
||||||
|
$table->setPrimaryKey(['id']);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function createShortUrlsInTagsTable(Schema $schema)
|
||||||
|
{
|
||||||
|
$table = $schema->createTable('short_urls_in_tags');
|
||||||
|
$table->addColumn('short_url_id', Type::BIGINT, [
|
||||||
|
'unsigned' => true,
|
||||||
|
'notnull' => true,
|
||||||
|
]);
|
||||||
|
$table->addColumn('tag_id', Type::BIGINT, [
|
||||||
|
'unsigned' => true,
|
||||||
|
'notnull' => true,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$table->addForeignKeyConstraint('tags', ['tag_id'], ['id'], [
|
||||||
|
'onDelete' => 'CASCADE',
|
||||||
|
'onUpdate' => 'RESTRICT',
|
||||||
|
]);
|
||||||
|
$table->addForeignKeyConstraint('short_urls', ['short_url_id'], ['id'], [
|
||||||
|
'onDelete' => 'CASCADE',
|
||||||
|
'onUpdate' => 'RESTRICT',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$table->setPrimaryKey(['short_url_id', 'tag_id']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Schema $schema
|
||||||
|
*/
|
||||||
|
public function down(Schema $schema)
|
||||||
|
{
|
||||||
|
$schema->dropTable('short_urls_in_tags');
|
||||||
|
$schema->dropTable('tags');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -42,6 +42,16 @@ class ShortUrl extends AbstractEntity implements \JsonSerializable
|
|||||||
* @ORM\OneToMany(targetEntity=Visit::class, mappedBy="shortUrl", fetch="EXTRA_LAZY")
|
* @ORM\OneToMany(targetEntity=Visit::class, mappedBy="shortUrl", fetch="EXTRA_LAZY")
|
||||||
*/
|
*/
|
||||||
protected $visits;
|
protected $visits;
|
||||||
|
/**
|
||||||
|
* @var Collection|Tag[]
|
||||||
|
* @ORM\ManyToMany(targetEntity=Tag::class, cascade={"persist"})
|
||||||
|
* @ORM\JoinTable(name="short_urls_in_tags", joinColumns={
|
||||||
|
* @ORM\JoinColumn(name="short_url_id", referencedColumnName="id")
|
||||||
|
* }, inverseJoinColumns={
|
||||||
|
* @ORM\JoinColumn(name="tag_id", referencedColumnName="id")
|
||||||
|
* })
|
||||||
|
*/
|
||||||
|
protected $tags;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ShortUrl constructor.
|
* ShortUrl constructor.
|
||||||
@@ -125,6 +135,34 @@ class ShortUrl extends AbstractEntity implements \JsonSerializable
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Collection|Tag[]
|
||||||
|
*/
|
||||||
|
public function getTags()
|
||||||
|
{
|
||||||
|
return $this->tags;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Collection|Tag[] $tags
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function setTags($tags)
|
||||||
|
{
|
||||||
|
$this->tags = $tags;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Tag $tag
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function addTag(Tag $tag)
|
||||||
|
{
|
||||||
|
$this->tags->add($tag);
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specify data which should be serialized to JSON
|
* Specify data which should be serialized to JSON
|
||||||
* @link http://php.net/manual/en/jsonserializable.jsonserialize.php
|
* @link http://php.net/manual/en/jsonserializable.jsonserialize.php
|
||||||
|
|||||||
40
module/Core/src/Entity/Tag.php
Normal file
40
module/Core/src/Entity/Tag.php
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<?php
|
||||||
|
namespace Shlinkio\Shlink\Core\Entity;
|
||||||
|
|
||||||
|
use Doctrine\ORM\Mapping as ORM;
|
||||||
|
use Shlinkio\Shlink\Common\Entity\AbstractEntity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class Tag
|
||||||
|
* @author
|
||||||
|
* @link
|
||||||
|
*
|
||||||
|
* @ORM\Entity()
|
||||||
|
* @ORM\Table(name="tags")
|
||||||
|
*/
|
||||||
|
class Tag extends AbstractEntity
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
* @ORM\Column(unique=true)
|
||||||
|
*/
|
||||||
|
protected $name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getName()
|
||||||
|
{
|
||||||
|
return $this->name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $name
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function setName($name)
|
||||||
|
{
|
||||||
|
$this->name = $name;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user