mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 02:04:33 +08:00
Fix structure sql
This commit is contained in:
parent
9950a23188
commit
0ad824c28f
1 changed files with 3 additions and 4 deletions
|
@ -168,8 +168,8 @@ ALTER SEQUENCE public.activities_id_seq OWNED BY public.activities.id;
|
|||
CREATE TABLE public.ar_internal_metadata (
|
||||
key character varying NOT NULL,
|
||||
value character varying,
|
||||
created_at timestamp(6) without time zone NOT NULL,
|
||||
updated_at timestamp(6) without time zone NOT NULL
|
||||
created_at timestamp without time zone NOT NULL,
|
||||
updated_at timestamp without time zone NOT NULL
|
||||
);
|
||||
|
||||
|
||||
|
@ -6520,7 +6520,6 @@ INSERT INTO "schema_migrations" (version) VALUES
|
|||
('20190812072649'),
|
||||
('20190830141257'),
|
||||
('20190910125740'),
|
||||
('20191001133557'),
|
||||
('20191009146101');
|
||||
('20191001133557');
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue