|
1
|
class CreateChords < ActiveRecord::Migration[5.2] |
|
2
|
def change |
|
3
|
create_table :chords do |t| |
|
4
|
t.text :chord |
|
5
|
t.integer :song_id, :limit => 8 |
|
6
|
t.integer :views_count, :default => 0 |
|
7
|
|
|
8
|
t.timestamps |
|
9
|
end |
|
10
|
add_foreign_key :chords, :songs |
|
11
|
end |
|
12
|
end |