This commit is contained in:
Akis 2023-01-08 21:28:00 +02:00
parent 33de893adc
commit 97abb5e263
Signed by untrusted user: akis
GPG Key ID: 267BF5C6677944ED

View File

@ -25,7 +25,7 @@ if (!building) {
table.string("author").notNullable(); table.string("author").notNullable();
table.string("link").nullable(); table.string("link").nullable();
table.bigInteger("created").notNullable(); table.bigInteger("created").notNullable();
table.timestamps(); table.timestamps(true, true, true);
}); });
} }
} }