The player is playing!

This commit is contained in:
Gregory Eremin
2012-09-02 02:03:19 +04:00
parent 43422624f1
commit 9f770892f8
29 changed files with 422 additions and 57 deletions
+11
View File
@@ -0,0 +1,11 @@
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :name
t.integer :vk_id
t.string :lang, default: "ru"
t.timestamps
end
end
end
+9 -1
View File
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20120901111329) do
ActiveRecord::Schema.define(:version => 20120901191655) do
create_table "albums", :force => true do |t|
t.integer "artist_id"
@@ -66,4 +66,12 @@ ActiveRecord::Schema.define(:version => 20120901111329) do
t.datetime "updated_at", :null => false
end
create_table "users", :force => true do |t|
t.string "name"
t.integer "vk_id"
t.string "lang", :default => "ru"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
end