| 1 | class CreateJavaneseGendingNotations < ActiveRecord::Migration[6.0] |
| 2 | def change |
| 3 | create_table :javanese_gending_notations do |t| |
| 4 | t.string :name |
| 5 | t.text :notation |
| 6 | t.integer :views_count |
| 7 | t.boolean :is_published |
| 8 | t.references :user, foreign_key: true |
| 9 | t.references :javanese_gending, foreign_key: true |
| 10 | |
| 11 | t.timestamps |
| 12 | end |
| 13 | end |
| 14 | end |