Skip to content

Commit

Permalink
Fix statement
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbrendel committed Aug 30, 2024
1 parent 3c8a86d commit cf5df0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/migrations/ShareLogModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function up()
$this->database = new Asatru\Database\Migration('sharelog', $this->connection);
$this->database->drop();
$this->database->add('id INT NOT NULL AUTO_INCREMENT PRIMARY KEY');
$this->database->add('userId INT NO NULL');
$this->database->add('userId INT NOT NULL');
$this->database->add('ident VARCHAR(512) NOT NULL');
$this->database->add('url VARCHAR(512) NOT NULL');
$this->database->add('asset VARCHAR(512) NOT NULL');
Expand Down

0 comments on commit cf5df0c

Please sign in to comment.