diff options
author | Zeger-Jan van de Weg <git@zjvandeweg.nl> | 2017-09-18 11:15:33 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-12-03 12:04:47 +0100 |
commit | 636376dd4d41856cc965718725f06bb8caacfd34 (patch) | |
tree | 5b1c61cd0b4d0d996268d97ab11ed58c1778b0fb /db | |
parent | e0f84130567dc34edf1ae75fcf595e24991d2fa9 (diff) | |
download | gitlab-ce-636376dd4d41856cc965718725f06bb8caacfd34.tar.gz |
WIP
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170918072948_create_artifacts.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20170918072948_create_artifacts.rb b/db/migrate/20170918072948_create_artifacts.rb new file mode 100644 index 00000000000..0b3241070ce --- /dev/null +++ b/db/migrate/20170918072948_create_artifacts.rb @@ -0,0 +1,8 @@ +class CreateArtifacts < ActiveRecord::Migration + def change + create_table :artifacts do |t| + + t.timestamps null: false + end + end +end |