[Poll] Polls now have an associated note, poll templates, start_show_styles event, started css

This commit is contained in:
Daniel
2020-11-22 02:36:01 +00:00
committed by Hugo Sales
parent 3a51d3ef89
commit 168b7d313a
18 changed files with 307 additions and 91 deletions

View File

@@ -42,6 +42,7 @@ class Poll extends Entity
private int $id;
private ?string $uri;
private ?int $gsactor_id;
private int $note_id;
private ?string $question;
private ?string $options;
private DateTimeInterface $created;
@@ -80,6 +81,17 @@ class Poll extends Entity
return $this->gsactor_id;
}
public function setNoteId(int $note_id): self
{
$this->note_id = $note_id;
return $this;
}
public function getNoteId(): int
{
return $this->note_id;
}
public function setQuestion(?string $question): self
{
$this->question = $question;
@@ -137,19 +149,19 @@ class Poll extends Entity
'name' => 'poll',
'description' => 'Per-notice poll data for Poll plugin',
'fields' => [
'id' => ['type' => 'serial', 'not null' => true],
'uri' => ['type' => 'varchar', 'length' => 191],
// 'uri' => ['type' => 'varchar', 'length' => 191, 'not null' => true],
'id' => ['type' => 'serial', 'not null' => true],
'uri' => ['type' => 'varchar', 'length' => 191],
'gsactor_id' => ['type' => 'int'],
'note_id' => ['type' => 'int', 'not null' => true],
'question' => ['type' => 'text'],
'options' => ['type' => 'text'],
'created' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was created'],
'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
],
'primary key' => ['id'],
// 'unique keys' => [
// 'poll_uri_key' => ['uri'],
// ],
'unique keys' => [
'poll_note_id' => ['note_id'],
],
];
}