Created
April 5, 2017 06:44
-
-
Save musaprg/b3ad8d9fbd2db950b26dafed8c2d6376 to your computer and use it in GitHub Desktop.
マルコフ連鎖のためのDBスキーム
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table corpus( | |
id integer primary key, | |
word1 text, | |
word2 text, | |
word3 text, | |
create_at, | |
updated_at | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment