22 lines
419 B
Ruby
22 lines
419 B
Ruby
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: releases
|
||
|
#
|
||
|
# id :integer not null, primary key
|
||
|
# tag :string(255)
|
||
|
# description :text
|
||
|
# project_id :integer
|
||
|
# created_at :datetime
|
||
|
# updated_at :datetime
|
||
|
#
|
||
|
|
||
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
||
|
|
||
|
FactoryGirl.define do
|
||
|
factory :release do
|
||
|
tag "v1.1.0"
|
||
|
description "Awesome release"
|
||
|
project
|
||
|
end
|
||
|
end
|