mirror of https://github.com/docker/docs.git
Merge pull request #161 from docker/consistent_schema
update initial.sql to make schema consistent with staging/prod
This commit is contained in:
commit
3746a86509
|
@ -20,9 +20,9 @@ CREATE TABLE `timestamp_keys` (
|
|||
DROP TABLE IF EXISTS `private_keys`;
|
||||
CREATE TABLE `private_keys` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`created_at` timestamp NULL,
|
||||
`updated_at` timestamp NULL,
|
||||
`deleted_at` timestamp NULL,
|
||||
`created_at` timestamp NULL DEFAULT NULL,
|
||||
`updated_at` timestamp NULL DEFAULT NULL,
|
||||
`deleted_at` timestamp NULL DEFAULT NULL,
|
||||
`key_id` varchar(255) NOT NULL,
|
||||
`encryption_alg` varchar(255) NOT NULL,
|
||||
`keywrap_alg` varchar(255) NOT NULL,
|
||||
|
|
Loading…
Reference in New Issue