Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing mysql #3

Closed
aiphee opened this issue Jan 28, 2019 · 1 comment
Closed

Missing mysql #3

aiphee opened this issue Jan 28, 2019 · 1 comment

Comments

@aiphee
Copy link

aiphee commented Jan 28, 2019

There is only postgress file, guess there should be migration... anyway here is working mysql:

CREATE TABLE wnk_translation (
                               id varchar(36) primary key,
                               msgid varchar(255) NOT NULL,
                               locale varchar(5) DEFAULT 'cs_CZ',
                               created timestamp,
                               last_used timestamp DEFAULT NOW(),
                              `status` varchar(24) default 'Original',
                                            msgstr text
                                 );

CREATE TABLE wnk_translation_proposed (
                                        id varchar(36) primary key,
                                        msgid varchar(255) NOT NULL,
                                        locale varchar(5) DEFAULT 'cs_CZ',
                                        `status` varchar(24) default 'ProposedByUser',
                                        created timestamp,
                                        createdbyip varchar(41),
                                        msgstr text
);
@ava007
Copy link
Owner

ava007 commented Jan 29, 2019

@aiphee Thanks for the ddl. ddl-mysql.sql has been created based on your proposal.

@ava007 ava007 closed this as completed Jan 29, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants