Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@setoelkahfi
/
tower-of-bazel
tower-of-bazel
/
backend
/
musik88-web
/
db
/
migrate
/
20191117195747_create_chord_shapes.rb
Code
Commits
Issues
Pulls
Sessions
CI/CD
feature/share-libs
feature/share-libs
main
rb
11 lines
221 Bytes
Copy permalink
Copy
Raw
1
class
CreateChordShapes
<
ActiveRecord
::
Migration
[
5.2
]
2
def
change
3
create_table
:chord_shapes
do
|
t
|
4
t
.
string
:name
5
t
.
string
:youtube_link
6
t
.
string
:image_link
7
8
t
.
timestamps
9
end
10
end
11
end