6 lines
114 B
Ruby
Executable File
6 lines
114 B
Ruby
Executable File
class AddUserIdToCards < ActiveRecord::Migration
|
|
def change
|
|
add_column :cards, :user_id, :integer
|
|
end
|
|
end
|