10 lines
174 B
Ruby
10 lines
174 B
Ruby
class CreateFavoritePeople < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :favorite_people do |t|
|
|
t.string :tiss_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|