Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO.txt3
-rw-r--r--db/migrate/20141027114732_add_language_name.rb5
2 files changed, 7 insertions, 1 deletions
diff --git a/TODO.txt b/TODO.txt
index 460f179d..2dfe9e98 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -1,9 +1,10 @@
PG2:
- * translation page?
* link for translation sources
* show that newer content is available for missed slugs (fallback to v1)
+
+
3.1 Launch:
* add MIT/CC license link to footer
diff --git a/db/migrate/20141027114732_add_language_name.rb b/db/migrate/20141027114732_add_language_name.rb
new file mode 100644
index 00000000..b43ccdbd
--- /dev/null
+++ b/db/migrate/20141027114732_add_language_name.rb
@@ -0,0 +1,5 @@
+class AddLanguageName < ActiveRecord::Migration
+ def change
+ add_column :books, :language, :string
+ end
+end