castopod/app/Libraries/ActivityPub/Database/Migrations/2018-01-01-020000_add_notes.php
Yassine Doghri 5c5c6da4be
refactor: add rector to enforce type declarations, code quality + style and remove dead code
- update CI process to include quality stage (tests + code review)
- add captainhook to install git pre-commit & pre-push hooks
- remove .devcontainer Dockerfile to use project's docker-compose services: all
services can now be started automatically using vscode
- update docs/setup-development.md
2021-05-12 10:48:30 +00:00

109 lines
2.8 KiB
PHP

<?php
/**
* Class AddNotes
* Creates activitypub_notes table in database
*
* @copyright 2021 Podlibre
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
namespace ActivityPub\Database\Migrations;
use CodeIgniter\Database\Migration;
class AddNotes extends Migration
{
public function up(): void
{
$this->forge->addField([
'id' => [
'type' => 'BINARY',
'constraint' => 16,
],
'uri' => [
'type' => 'VARCHAR',
'constraint' => 191,
],
'actor_id' => [
'type' => 'INT',
'unsigned' => true,
],
'in_reply_to_id' => [
'type' => 'BINARY',
'constraint' => 16,
'null' => true,
],
'reblog_of_id' => [
'type' => 'BINARY',
'constraint' => 16,
'null' => true,
],
'message' => [
'type' => 'VARCHAR',
'constraint' => 500,
'null' => true,
],
'message_html' => [
'type' => 'VARCHAR',
'constraint' => 600,
'null' => true,
],
'favourites_count' => [
'type' => 'INT',
'unsigned' => true,
'default' => 0,
],
'reblogs_count' => [
'type' => 'INT',
'unsigned' => true,
'default' => 0,
],
'replies_count' => [
'type' => 'INT',
'unsigned' => true,
'default' => 0,
],
'published_at' => [
'type' => 'DATETIME',
'null' => true,
],
'created_at' => [
'type' => 'DATETIME',
],
]);
$this->forge->addPrimaryKey('id');
$this->forge->addUniqueKey('uri');
// FIXME: an actor must reblog a note only once
// $this->forge->addUniqueKey(['actor_id', 'reblog_of_id']);
$this->forge->addForeignKey(
'actor_id',
'activitypub_actors',
'id',
false,
'CASCADE',
);
$this->forge->addForeignKey(
'in_reply_to_id',
'activitypub_notes',
'id',
false,
'CASCADE',
);
$this->forge->addForeignKey(
'reblog_of_id',
'activitypub_notes',
'id',
false,
'CASCADE',
);
$this->forge->createTable('activitypub_notes');
}
public function down(): void
{
$this->forge->dropTable('activitypub_notes');
}
}