Fixed a bug where scrolling didn't work if all the songs were removed
[lyrix.git] / db / schema.rb
blobea686fcfc0a7f4493df6220855ca93faf703ce15
1 # This file is autogenerated. Instead of editing this file, please use the
2 # migrations feature of ActiveRecord to incrementally modify your database, and
3 # then regenerate this schema definition.
5 ActiveRecord::Schema.define(:version => 3) do
7   create_table "shows", :force => true do |t|
8     t.column "title",      :string,   :null => false
9     t.column "created_at", :datetime
10     t.column "updated_at", :datetime
11   end
13   create_table "songs", :force => true do |t|
14     t.column "title",      :string,   :null => false
15     t.column "artist",     :string
16     t.column "lyrics",     :text
17     t.column "created_at", :datetime
18     t.column "updated_at", :datetime
19   end
21   create_table "sync_logs", :force => true do |t|
22     t.column "sync_time",      :datetime
23     t.column "sync_direction", :string
24     t.column "csv_block",      :text
25     t.column "status",         :boolean,  :default => false, :null => false
26   end
28   create_table "usages", :force => true do |t|
29     t.column "show_id",    :integer
30     t.column "song_id",    :integer
31     t.column "position",   :integer
32     t.column "created_at", :datetime
33     t.column "updated_at", :datetime
34   end
36 end