Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
blog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mis-21-2018-intersession
rails
blog
Commits
42d4601a
Commit
42d4601a
authored
Jul 02, 2018
by
John Noel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created Post model
parent
cb6cf537
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
post.rb
app/models/post.rb
+2
-0
20180702131419_create_posts.rb
db/migrate/20180702131419_create_posts.rb
+10
-0
No files found.
app/models/post.rb
0 → 100644
View file @
42d4601a
class
Post
<
ApplicationRecord
end
db/migrate/20180702131419_create_posts.rb
0 → 100644
View file @
42d4601a
class
CreatePosts
<
ActiveRecord
::
Migration
[
5.2
]
def
change
create_table
:posts
do
|
t
|
t
.
string
:title
t
.
text
:content
t
.
timestamps
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment